暫無描述

pom.xml 882B

123456789101112131415161718192021222324252627282930
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.jfw</groupId>
  6. <artifactId>jFrameWork</artifactId>
  7. <version>0.0.2-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>jfwApt</artifactId>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <dependencies>
  14. </dependencies>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-compiler-plugin</artifactId>
  20. <version>3.1</version>
  21. <configuration>
  22. <source>1.7</source>
  23. <target>1.7</target>
  24. <compilerArgument>-proc:none</compilerArgument>
  25. </configuration>
  26. </plugin>
  27. </plugins>
  28. </build>
  29. </project>