pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License. See accompanying LICENSE file.
  12. -->
  13. <project xmlns="http://maven.apache.org/POM/4.0.0"
  14. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  15. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  16. <modelVersion>4.0.0</modelVersion>
  17. <parent>
  18. <groupId>org.apache.hadoop</groupId>
  19. <artifactId>hadoop-project</artifactId>
  20. <version>3.5.0-SNAPSHOT</version>
  21. <relativePath>../hadoop-project</relativePath>
  22. </parent>
  23. <artifactId>hadoop-maven-plugins</artifactId>
  24. <packaging>maven-plugin</packaging>
  25. <name>Apache Hadoop Maven Plugins</name>
  26. <properties>
  27. <maven.dependency.version>3.9.5</maven.dependency.version>
  28. <maven.plugin-tools.version>3.10.1</maven.plugin-tools.version>
  29. <plexus.classworlds.version>2.7.0</plexus.classworlds.version>
  30. <sisu.inject.version>0.3.5</sisu.inject.version>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.apache.maven</groupId>
  35. <artifactId>maven-plugin-api</artifactId>
  36. <version>${maven.dependency.version}</version>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>org.eclipse.sisu</groupId>
  40. <artifactId>org.eclipse.sisu.inject</artifactId>
  41. </exclusion>
  42. <exclusion>
  43. <groupId>org.codehaus.plexus</groupId>
  44. <artifactId>plexus-classworlds</artifactId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.maven</groupId>
  50. <artifactId>maven-core</artifactId>
  51. <version>${maven.dependency.version}</version>
  52. <exclusions>
  53. <exclusion>
  54. <groupId>org.eclipse.sisu</groupId>
  55. <artifactId>org.eclipse.sisu.inject</artifactId>
  56. </exclusion>
  57. <exclusion>
  58. <groupId>org.sonatype.sisu</groupId>
  59. <artifactId>sisu-inject-plexus</artifactId>
  60. </exclusion>
  61. <exclusion>
  62. <groupId>org.codehaus.plexus</groupId>
  63. <artifactId>plexus-classworlds</artifactId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.codehaus.plexus</groupId>
  69. <artifactId>plexus-classworlds</artifactId>
  70. <version>${plexus.classworlds.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.eclipse.sisu</groupId>
  74. <artifactId>org.eclipse.sisu.inject</artifactId>
  75. <version>${sisu.inject.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.maven.plugin-tools</groupId>
  79. <artifactId>maven-plugin-annotations</artifactId>
  80. <version>${maven.plugin-tools.version}</version>
  81. <scope>provided</scope>
  82. <exclusions>
  83. <!-- excluding dependency that conflicts with other maven
  84. dependencies -->
  85. <exclusion>
  86. <groupId>org.apache.maven</groupId>
  87. <artifactId>maven-artifact</artifactId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. <dependency>
  92. <groupId>commons-io</groupId>
  93. <artifactId>commons-io</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.fasterxml.jackson.core</groupId>
  97. <artifactId>jackson-databind</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.hadoop.thirdparty</groupId>
  101. <artifactId>hadoop-shaded-guava</artifactId>
  102. </dependency>
  103. </dependencies>
  104. <build>
  105. <plugins>
  106. <plugin>
  107. <artifactId>maven-compiler-plugin</artifactId>
  108. </plugin>
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-plugin-plugin</artifactId>
  112. <version>${maven.plugin-tools.version}</version>
  113. <executions>
  114. <execution>
  115. <id>default-descriptor</id>
  116. <phase>compile</phase>
  117. </execution>
  118. </executions>
  119. </plugin>
  120. <!--
  121. Skip Clover instrumentation for this module to prevent error finding Clover
  122. classes during plugin execution when running a build with Clover enabled.
  123. -->
  124. <plugin>
  125. <groupId>org.openclover</groupId>
  126. <artifactId>clover-maven-plugin</artifactId>
  127. <configuration>
  128. <skip>true</skip>
  129. </configuration>
  130. </plugin>
  131. </plugins>
  132. </build>
  133. </project>