pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. <!--
  2. Licensed under the Apache License, Version 2.0 (the "License");
  3. you may not use this file except in compliance with the License.
  4. You may obtain a copy of the License at
  5. http://www.apache.org/licenses/LICENSE-2.0
  6. Unless required by applicable law or agreed to in writing, software
  7. distributed under the License is distributed on an "AS IS" BASIS,
  8. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  9. See the License for the specific language governing permissions and
  10. limitations under the License. See accompanying LICENSE file.
  11. -->
  12. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  13. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  14. <parent>
  15. <artifactId>hadoop-yarn-applications-mawo</artifactId>
  16. <groupId>org.apache.hadoop.applications.mawo</groupId>
  17. <version>3.5.0-SNAPSHOT</version>
  18. </parent>
  19. <modelVersion>4.0.0</modelVersion>
  20. <!-- <groupId>org.apache.hadoop.applications.mawo</groupId> -->
  21. <artifactId>hadoop-yarn-applications-mawo-core</artifactId>
  22. <packaging>jar</packaging>
  23. <name>Apache Hadoop YARN Application MaWo Core</name>
  24. <url>https://maven.apache.org</url>
  25. <properties>
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.apache.hadoop</groupId>
  31. <artifactId>hadoop-common</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.hadoop</groupId>
  35. <artifactId>hadoop-common</artifactId>
  36. <type>test-jar</type>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.junit.jupiter</groupId>
  41. <artifactId>junit-jupiter-api</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.junit.jupiter</groupId>
  46. <artifactId>junit-jupiter-engine</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.junit.platform</groupId>
  51. <artifactId>junit-platform-launcher</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.google.inject</groupId>
  56. <artifactId>guice</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.curator</groupId>
  60. <artifactId>curator-framework</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.curator</groupId>
  64. <artifactId>curator-client</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.curator</groupId>
  68. <artifactId>curator-test</artifactId>
  69. <scope>test</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>commons-io</groupId>
  73. <artifactId>commons-io</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>commons-cli</groupId>
  77. <artifactId>commons-cli</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.zookeeper</groupId>
  81. <artifactId>zookeeper</artifactId>
  82. <exclusions>
  83. <exclusion>
  84. <!-- otherwise seems to drag in junit 3.8.1 via jline -->
  85. <groupId>junit</groupId>
  86. <artifactId>junit</artifactId>
  87. </exclusion>
  88. <exclusion>
  89. <groupId>com.sun.jdmk</groupId>
  90. <artifactId>jmxtools</artifactId>
  91. </exclusion>
  92. <exclusion>
  93. <groupId>com.sun.jmx</groupId>
  94. <artifactId>jmxri</artifactId>
  95. </exclusion>
  96. <exclusion>
  97. <groupId>org.jboss.netty</groupId>
  98. <artifactId>netty</artifactId>
  99. </exclusion>
  100. </exclusions>
  101. </dependency>
  102. <dependency>
  103. <groupId>io.dropwizard.metrics</groupId>
  104. <artifactId>metrics-core</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.xerial.snappy</groupId>
  108. <artifactId>snappy-java</artifactId>
  109. <scope>provided</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.slf4j</groupId>
  113. <artifactId>slf4j-api</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.googlecode.json-simple</groupId>
  117. <artifactId>json-simple</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.httpcomponents</groupId>
  121. <artifactId>httpclient</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.httpcomponents</groupId>
  125. <artifactId>httpcore</artifactId>
  126. </dependency>
  127. </dependencies>
  128. <build>
  129. <pluginManagement>
  130. <plugins>
  131. <plugin>
  132. <groupId>org.apache.maven.plugins</groupId>
  133. <artifactId>maven-assembly-plugin</artifactId>
  134. </plugin>
  135. </plugins>
  136. </pluginManagement>
  137. <plugins>
  138. <plugin>
  139. <groupId>org.apache.maven.plugins</groupId>
  140. <artifactId>maven-assembly-plugin</artifactId>
  141. <configuration>
  142. <descriptors>
  143. <descriptor>src/assembly/bin.xml</descriptor>
  144. </descriptors>
  145. <finalName>hadoop-applications-mawo-core-${project.version}</finalName>
  146. </configuration>
  147. <executions>
  148. <execution>
  149. <phase>package</phase>
  150. <goals>
  151. <goal>single</goal>
  152. </goals>
  153. </execution>
  154. </executions>
  155. </plugin>
  156. <plugin>
  157. <groupId>org.apache.rat</groupId>
  158. <artifactId>apache-rat-plugin</artifactId>
  159. <configuration>
  160. <excludes>
  161. <exclude>target/**/*</exclude>
  162. </excludes>
  163. </configuration>
  164. </plugin>
  165. </plugins>
  166. </build>
  167. </project>