aboutsummaryrefslogtreecommitdiffstats
path: root/ajdoc
diff options
context:
space:
mode:
authorAndy Clement <aclement@pivotal.io>2021-04-28 13:08:08 -0700
committerGitHub <noreply@github.com>2021-04-28 13:08:08 -0700
commitbdb89385dd387464ab02d7655ac8d5486d32c2fc (patch)
treed9c66f89753913e10226a318ea6236990ce7b41c /ajdoc
parent48e1b14cb46f389ed7cb78312d8c8ab61f1fba05 (diff)
parent3f127347ceeb042f6624c9ce956cc31555bc376d (diff)
downloadaspectj-bdb89385dd387464ab02d7655ac8d5486d32c2fc.tar.gz
aspectj-bdb89385dd387464ab02d7655ac8d5486d32c2fc.zip
Merge pull request #44 from kriegaex/run-all-junit-tests-dependencies
Fix missing dependencies in module 'run-all-junit-tests'
Diffstat (limited to 'ajdoc')
-rw-r--r--ajdoc/pom.xml20
1 files changed, 13 insertions, 7 deletions
diff --git a/ajdoc/pom.xml b/ajdoc/pom.xml
index 22252b570..787f27600 100644
--- a/ajdoc/pom.xml
+++ b/ajdoc/pom.xml
@@ -18,7 +18,7 @@
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<usedDependencies>
- <!-- The tests need this during runtime, even though no direct usage is in our classes -->
+ <!-- The tests need these during runtime, even though no direct usage is in our classes -->
<usedDependency>com.github.olivergondza:maven-jdk-tools-wrapper</usedDependency>
</usedDependencies>
</configuration>
@@ -27,6 +27,7 @@
</build>
<dependencies>
+
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>util</artifactId>
@@ -48,12 +49,6 @@
<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>
@@ -64,5 +59,16 @@
<scope>test</scope>
</dependency>
+ <!--
+ The tests need these during runtime, even though no direct usage is in our classes.
+ See also 'usedDependencies' in maven-dependency-plugin configuration.
+ -->
+ <dependency>
+ <!-- enables easy dependency on tools.jar -->
+ <groupId>com.github.olivergondza</groupId>
+ <artifactId>maven-jdk-tools-wrapper</artifactId>
+ <version>0.1</version>
+ </dependency>
+
</dependencies>
</project>