pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <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/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>tracevis</groupId>
  4. <artifactId>tracevis</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <build>
  7. <testSourceDirectory>test/main/java</testSourceDirectory>
  8. <resources>
  9. <resource>
  10. <directory>src/main/java</directory>
  11. <excludes>
  12. <exclude>**/*.java</exclude>
  13. </excludes>
  14. </resource>
  15. <resource>
  16. <directory>src/main/resources</directory>
  17. <excludes>
  18. <exclude>**/*.java</exclude>
  19. </excludes>
  20. </resource>
  21. </resources>
  22. <plugins>
  23. <plugin>
  24. <artifactId>maven-compiler-plugin</artifactId>
  25. <version>3.1</version>
  26. <configuration>
  27. <source>1.7</source>
  28. <target>1.7</target>
  29. </configuration>
  30. </plugin>
  31. </plugins>
  32. </build>
  33. <dependencies>
  34. <dependency>
  35. <groupId>jung</groupId>
  36. <artifactId>jung</artifactId>
  37. <version>1.7.6</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>junit</groupId>
  41. <artifactId>junit</artifactId>
  42. <version>4.11</version>
  43. </dependency>
  44. </dependencies>
  45. </project>