pom.xml 967 B

1234567891011121314151617181920212223242526272829
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.apache.hadoop</groupId>
  6. <artifactId>hadoop-hdfs</artifactId>
  7. <name>Hadoop HDFS</name>
  8. <version>0.23-SNAPSHOT</version>
  9. <build>
  10. <sourceDirectory>src</sourceDirectory>
  11. <outputDirectory>build</outputDirectory>
  12. <plugins>
  13. <plugin>
  14. <groupId>org.apache.maven.plugins</groupId>
  15. <artifactId>maven-compiler-plugin</artifactId>
  16. <configuration>
  17. <source>1.5</source>
  18. <target>1.5</target>
  19. <excludes>
  20. <exclude>**/*.*</exclude>
  21. </excludes>
  22. </configuration>
  23. </plugin>
  24. </plugins>
  25. </build>
  26. <properties>
  27. <sonar.dynamicAnalysis>false</sonar.dynamicAnalysis>
  28. </properties>
  29. </project>