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 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.aspectj</groupId>
  7. <artifactId>aspectj-parent</artifactId>
  8. <version>1.9.7.BUILD-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>ajdoc</artifactId>
  11. <build>
  12. <plugins>
  13. <plugin>
  14. <groupId>org.apache.maven.plugins</groupId>
  15. <artifactId>maven-dependency-plugin</artifactId>
  16. <configuration>
  17. <usedDependencies>
  18. <!-- The tests need this during runtime, even though no direct usage is in our classes -->
  19. <usedDependency>com.github.olivergondza:maven-jdk-tools-wrapper</usedDependency>
  20. </usedDependencies>
  21. </configuration>
  22. </plugin>
  23. </plugins>
  24. </build>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.aspectj</groupId>
  28. <artifactId>util</artifactId>
  29. <version>${project.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.aspectj</groupId>
  33. <artifactId>bridge</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.aspectj</groupId>
  38. <artifactId>asm</artifactId>
  39. <version>${project.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.aspectj</groupId>
  43. <artifactId>org.aspectj.ajdt.core</artifactId>
  44. <version>${project.version}</version>
  45. </dependency>
  46. <dependency>
  47. <!-- enables easy dependency on tools.jar -->
  48. <groupId>com.github.olivergondza</groupId>
  49. <artifactId>maven-jdk-tools-wrapper</artifactId>
  50. <version>0.1</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.aspectj</groupId>
  54. <artifactId>asm-renamed</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.aspectj</groupId>
  58. <artifactId>testing-util</artifactId>
  59. <version>${project.version}</version>
  60. <scope>test</scope>
  61. </dependency>
  62. </dependencies>
  63. </project>