1
0

pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  5. http://maven.apache.org/maven-v4_0_0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <groupId>org.notmysock.tpch</groupId>
  8. <artifactId>tpch-gen</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <packaging>jar</packaging>
  11. <name>tpch-gen</name>
  12. <url>http://maven.apache.org</url>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.apache.hadoop</groupId>
  16. <artifactId>hadoop-client</artifactId>
  17. <version>2.2.0</version>
  18. <scope>compile</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>commons-cli</groupId>
  22. <artifactId>commons-cli</artifactId>
  23. <version>1.1</version>
  24. <scope>compile</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.mockito</groupId>
  28. <artifactId>mockito-core</artifactId>
  29. <version>1.8.5</version>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>junit</groupId>
  34. <artifactId>junit</artifactId>
  35. <version>4.7</version>
  36. <scope>test</scope>
  37. </dependency>
  38. </dependencies>
  39. <build>
  40. <plugins>
  41. <plugin>
  42. <artifactId>maven-compiler-plugin</artifactId>
  43. <configuration>
  44. <source>1.6</source>
  45. <target>1.6</target>
  46. </configuration>
  47. </plugin>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-jar-plugin</artifactId>
  51. <configuration>
  52. <archive>
  53. <manifest>
  54. <addClasspath>true</addClasspath>
  55. <classpathPrefix>lib/</classpathPrefix>
  56. <mainClass>org.notmysock.tpch.GenTable</mainClass>
  57. </manifest>
  58. </archive>
  59. </configuration>
  60. </plugin>
  61. <plugin>
  62. <groupId>org.apache.maven.plugins</groupId>
  63. <artifactId>maven-dependency-plugin</artifactId>
  64. <executions>
  65. <execution>
  66. <id>copy-dependencies</id>
  67. <phase>package</phase>
  68. <goals>
  69. <goal>copy-dependencies</goal>
  70. </goals>
  71. <configuration>
  72. <outputDirectory>${project.build.directory}/lib</outputDirectory>
  73. </configuration>
  74. </execution>
  75. </executions>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. </project>