aboutsummaryrefslogtreecommitdiffstats
path: root/ajdoc/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'ajdoc/pom.xml')
-rw-r--r--ajdoc/pom.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/ajdoc/pom.xml b/ajdoc/pom.xml
index dee6a59ca..28076699d 100644
--- a/ajdoc/pom.xml
+++ b/ajdoc/pom.xml
@@ -13,6 +13,21 @@
<packaging>jar</packaging>
<name>ajdoc</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <configuration>
+ <usedDependencies>
+ <!-- The tests need this during runtime, even though no direct usage is in our classes -->
+ <usedDependency>com.github.olivergondza:maven-jdk-tools-wrapper</usedDependency>
+ </usedDependencies>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
@@ -35,6 +50,12 @@
<version>${project.version}</version>
</dependency>
<dependency>
+ <!-- enables easy dependency on tools.jar -->
+ <groupId>com.github.olivergondza</groupId>
+ <artifactId>maven-jdk-tools-wrapper</artifactId>
+ <version>0.1</version>
+ </dependency>
+ <dependency>
<groupId>org.aspectj</groupId>
<artifactId>asm-renamed</artifactId>
</dependency>