You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.aspectj</groupId>
  7. <artifactId>aspectj-parent</artifactId>
  8. <packaging>pom</packaging>
  9. <version>${revision}</version>
  10. <name>AspectJ Parent Project</name>
  11. <properties>
  12. <revision>1.9.3.BUILD-SNAPSHOT</revision>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <modules>
  16. <module>util</module>
  17. <module>bcel</module>
  18. </modules>
  19. <build>
  20. <pluginManagement>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-compiler-plugin</artifactId>
  25. <configuration>
  26. <source>1.8</source>
  27. <target>1.8</target>
  28. </configuration>
  29. </plugin>
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-surefire-plugin</artifactId>
  33. <configuration>
  34. <testFailureIgnore>true</testFailureIgnore>
  35. </configuration>
  36. </plugin>
  37. </plugins>
  38. </pluginManagement>
  39. </build>
  40. <dependencies>
  41. <dependency>
  42. <groupId>junit</groupId>
  43. <artifactId>junit</artifactId>
  44. <version>3.8.1</version>
  45. <scope>test</scope>
  46. </dependency>
  47. </dependencies>
  48. </project>