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.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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.20-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 these 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. <!-- All modules referencing files inside 'lib' need this dependency -->
  28. <groupId>org.aspectj</groupId>
  29. <artifactId>lib</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.aspectj</groupId>
  34. <artifactId>util</artifactId>
  35. <version>${project.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.aspectj</groupId>
  39. <artifactId>bridge</artifactId>
  40. <version>${project.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.aspectj</groupId>
  44. <artifactId>asm</artifactId>
  45. <version>${project.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.aspectj</groupId>
  49. <artifactId>org.aspectj.ajdt.core</artifactId>
  50. <version>${project.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.ow2.asm</groupId>
  54. <artifactId>asm</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. <!--
  63. The tests need these during runtime, even though no direct usage is in our classes.
  64. See also 'usedDependencies' in maven-dependency-plugin configuration.
  65. -->
  66. <dependency>
  67. <!-- enables easy dependency on tools.jar -->
  68. <groupId>com.github.olivergondza</groupId>
  69. <artifactId>maven-jdk-tools-wrapper</artifactId>
  70. <version>0.1</version>
  71. </dependency>
  72. </dependencies>
  73. </project>