1
0

pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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.4.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. <pluginRepositories>
  80. <pluginRepository>
  81. <id>central</id>
  82. <name>Central Repository</name>
  83. <url>https://repo.maven.apache.org/maven2</url>
  84. <layout>default</layout>
  85. <snapshots>
  86. <enabled>false</enabled>
  87. </snapshots>
  88. <releases>
  89. <updatePolicy>never</updatePolicy>
  90. </releases>
  91. </pluginRepository>
  92. </pluginRepositories>
  93. <repositories>
  94. <repository>
  95. <id>central</id>
  96. <name>Central Repository</name>
  97. <url>https://repo.maven.apache.org/maven2</url>
  98. <layout>default</layout>
  99. <snapshots>
  100. <enabled>false</enabled>
  101. </snapshots>
  102. </repository>
  103. </repositories>
  104. </project>