pom.xml 5.3 KB

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