pom.xml.versionsBackup 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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.4.1-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. </dependency>
  83. <dependency>
  84. <groupId>io.dropwizard.metrics</groupId>
  85. <artifactId>metrics-core</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.xerial.snappy</groupId>
  89. <artifactId>snappy-java</artifactId>
  90. <scope>provided</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.slf4j</groupId>
  94. <artifactId>slf4j-api</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.googlecode.json-simple</groupId>
  98. <artifactId>json-simple</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.httpcomponents</groupId>
  102. <artifactId>httpclient</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.httpcomponents</groupId>
  106. <artifactId>httpcore</artifactId>
  107. </dependency>
  108. </dependencies>
  109. <build>
  110. <pluginManagement>
  111. <plugins>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-assembly-plugin</artifactId>
  115. </plugin>
  116. </plugins>
  117. </pluginManagement>
  118. <plugins>
  119. <plugin>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-assembly-plugin</artifactId>
  122. <configuration>
  123. <descriptors>
  124. <descriptor>src/assembly/bin.xml</descriptor>
  125. </descriptors>
  126. <finalName>hadoop-applications-mawo-core-${project.version}</finalName>
  127. </configuration>
  128. <executions>
  129. <execution>
  130. <phase>package</phase>
  131. <goals>
  132. <goal>single</goal>
  133. </goals>
  134. </execution>
  135. </executions>
  136. </plugin>
  137. <plugin>
  138. <groupId>org.apache.rat</groupId>
  139. <artifactId>apache-rat-plugin</artifactId>
  140. <configuration>
  141. <excludes>
  142. <exclude>target/**/*</exclude>
  143. </excludes>
  144. </configuration>
  145. </plugin>
  146. </plugins>
  147. </build>
  148. </project>