pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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-azure-datalake</artifactId>
  24. <name>Apache Hadoop Azure Data Lake support</name>
  25. <description>
  26. This module contains code to support integration with Azure Data Lake.
  27. </description>
  28. <packaging>jar</packaging>
  29. <properties>
  30. <minimalJsonVersion>0.9.1</minimalJsonVersion>
  31. <file.encoding>UTF-8</file.encoding>
  32. <downloadSources>true</downloadSources>
  33. <azure.data.lake.store.sdk.version>2.3.9</azure.data.lake.store.sdk.version>
  34. </properties>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-jar-plugin</artifactId>
  40. <executions>
  41. <execution>
  42. <goals>
  43. <goal>test-jar</goal>
  44. </goals>
  45. </execution>
  46. </executions>
  47. </plugin>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-dependency-plugin</artifactId>
  51. <executions>
  52. <execution>
  53. <id>deplist</id>
  54. <phase>compile</phase>
  55. <goals>
  56. <goal>list</goal>
  57. </goals>
  58. <configuration>
  59. <!-- build a shellprofile -->
  60. <outputFile>${project.basedir}/target/hadoop-tools-deps/${project.artifactId}.tools-optional.txt</outputFile>
  61. </configuration>
  62. </execution>
  63. </executions>
  64. </plugin>
  65. </plugins>
  66. <!--
  67. The following is to suppress a m2e warning in eclipse
  68. (m2e doesn't know how to handle maven-enforcer:enforce, so we have to tell m2e to ignore it)
  69. see: https://stackoverflow.com/questions/13040788/how-to-elimate-the-maven-enforcer-plugin-goal-enforce-is-ignored-by-m2e-wa
  70. -->
  71. <pluginManagement>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.eclipse.m2e</groupId>
  75. <artifactId>lifecycle-mapping</artifactId>
  76. <version>1.0.0</version>
  77. <configuration>
  78. <lifecycleMappingMetadata>
  79. <pluginExecutions>
  80. <pluginExecution>
  81. <pluginExecutionFilter>
  82. <groupId>org.apache.maven.plugins
  83. </groupId>
  84. <artifactId>maven-enforcer-plugin
  85. </artifactId>
  86. <versionRange>[1.0.0,)</versionRange>
  87. <goals>
  88. <goal>enforce</goal>
  89. </goals>
  90. </pluginExecutionFilter>
  91. <action>
  92. <ignore/>
  93. </action>
  94. </pluginExecution>
  95. </pluginExecutions>
  96. </lifecycleMappingMetadata>
  97. </configuration>
  98. </plugin>
  99. </plugins>
  100. </pluginManagement>
  101. </build>
  102. <dependencies>
  103. <!-- SDK Dependency -->
  104. <dependency>
  105. <groupId>com.microsoft.azure</groupId>
  106. <artifactId>azure-data-lake-store-sdk</artifactId>
  107. <version>${azure.data.lake.store.sdk.version}</version>
  108. <exclusions>
  109. <!-- comes with hadoop-common -->
  110. <exclusion>
  111. <groupId>com.fasterxml.jackson.core</groupId>
  112. <artifactId>jackson-core</artifactId>
  113. </exclusion>
  114. <exclusion>
  115. <groupId>org.slf4j</groupId>
  116. <artifactId>slf4j-api</artifactId>
  117. </exclusion>
  118. <!-- out of date and incompatible with recent openssl releases -->
  119. <exclusion>
  120. <groupId>org.wildfly.openssl</groupId>
  121. <artifactId>wildfly-openssl</artifactId>
  122. </exclusion>
  123. </exclusions>
  124. </dependency>
  125. <!-- ENDS HERE-->
  126. <dependency>
  127. <groupId>org.apache.hadoop</groupId>
  128. <artifactId>hadoop-common</artifactId>
  129. <scope>provided</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>junit</groupId>
  133. <artifactId>junit</artifactId>
  134. <scope>test</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>com.eclipsesource.minimal-json</groupId>
  138. <artifactId>minimal-json</artifactId>
  139. <version>0.9.1</version>
  140. <scope>test</scope>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.apache.hadoop</groupId>
  144. <artifactId>hadoop-common</artifactId>
  145. <scope>test</scope>
  146. <type>test-jar</type>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.apache.hadoop</groupId>
  150. <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
  151. <scope>test</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.apache.hadoop</groupId>
  155. <artifactId>hadoop-distcp</artifactId>
  156. <scope>test</scope>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.apache.hadoop</groupId>
  160. <artifactId>hadoop-distcp</artifactId>
  161. <scope>test</scope>
  162. <type>test-jar</type>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.wildfly.openssl</groupId>
  166. <artifactId>wildfly-openssl</artifactId>
  167. <scope>compile</scope>
  168. </dependency>
  169. </dependencies>
  170. </project>