dependency-reduced-pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.apache.ambari</groupId>
  5. <artifactId>fast-hdfs-resource</artifactId>
  6. <name>fast-hdfs-resource</name>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <url>http://maven.apache.org</url>
  9. <build>
  10. <plugins>
  11. <plugin>
  12. <artifactId>maven-shade-plugin</artifactId>
  13. <version>2.3</version>
  14. <executions>
  15. <execution>
  16. <phase>package</phase>
  17. <goals>
  18. <goal>shade</goal>
  19. </goals>
  20. <configuration>
  21. <transformers>
  22. <transformer>
  23. <mainClass>org.apache.ambari.fast_hdfs_resource.Runner</mainClass>
  24. </transformer>
  25. </transformers>
  26. </configuration>
  27. </execution>
  28. </executions>
  29. </plugin>
  30. </plugins>
  31. </build>
  32. <repositories>
  33. <repository>
  34. <id>hdp.internal</id>
  35. <url>http://repo1.maven.org/maven2</url>
  36. </repository>
  37. </repositories>
  38. <properties>
  39. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  40. </properties>
  41. </project>