pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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-ozone</artifactId>
  20. <version>0.4.0-SNAPSHOT</version>
  21. </parent>
  22. <artifactId>hadoop-ozone-filesystem-lib-current</artifactId>
  23. <name>Apache Hadoop Ozone FileSystem Single Jar Library</name>
  24. <packaging>jar</packaging>
  25. <description>This projects creates an uber jar from ozonefs with all the
  26. dependencies.
  27. </description>
  28. <version>0.4.0-SNAPSHOT</version>
  29. <properties>
  30. <file.encoding>UTF-8</file.encoding>
  31. <downloadSources>true</downloadSources>
  32. </properties>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-jar-plugin</artifactId>
  38. <executions>
  39. <execution>
  40. <goals>
  41. <goal>test-jar</goal>
  42. </goals>
  43. </execution>
  44. </executions>
  45. </plugin>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-dependency-plugin</artifactId>
  49. <executions>
  50. <execution>
  51. <goals>
  52. <goal>unpack-dependencies</goal>
  53. </goals>
  54. <phase>prepare-package</phase>
  55. <configuration>
  56. <outputDirectory>target/classes</outputDirectory>
  57. <includeScope>compile</includeScope>
  58. <excludes>META-INF/*.SF</excludes>
  59. <excludeArtifactIds>
  60. slf4j-api,slf4j-log4j12,log4j-api,log4j-core,log4j
  61. </excludeArtifactIds>
  62. </configuration>
  63. </execution>
  64. </executions>
  65. </plugin>
  66. <plugin>
  67. <groupId>org.codehaus.mojo</groupId>
  68. <artifactId>animal-sniffer-maven-plugin</artifactId>
  69. <executions>
  70. <execution>
  71. <id>signature-check</id>
  72. <phase></phase>
  73. </execution>
  74. </executions>
  75. </plugin>
  76. <plugin>
  77. <groupId>org.codehaus.mojo</groupId>
  78. <artifactId>findbugs-maven-plugin</artifactId>
  79. <configuration>
  80. <skip>true</skip>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. <dependencies>
  86. <dependency>
  87. <groupId>org.apache.hadoop</groupId>
  88. <artifactId>hadoop-ozone-filesystem</artifactId>
  89. <scope>compile</scope>
  90. </dependency>
  91. </dependencies>
  92. </project>