aboutsummaryrefslogtreecommitdiffstats
path: root/run-all-junit-tests
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 /run-all-junit-tests
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 'run-all-junit-tests')
-rw-r--r--run-all-junit-tests/pom.xml54
1 files changed, 50 insertions, 4 deletions
diff --git a/run-all-junit-tests/pom.xml b/run-all-junit-tests/pom.xml
index fe7d15dfb..fb21ee685 100644
--- a/run-all-junit-tests/pom.xml
+++ b/run-all-junit-tests/pom.xml
@@ -12,10 +12,7 @@
<artifactId>run-all-junit-tests</artifactId>
<dependencies>
- <dependency>
- <groupId>org.aspectj</groupId>
- <artifactId>asm-renamed</artifactId>
- </dependency>
+
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>util</artifactId>
@@ -142,6 +139,41 @@
<type>test-jar</type>
<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>
+ <groupId>ant</groupId>
+ <artifactId>ant-launcher</artifactId>
+ <version>${lib.ant.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.aspectj</groupId>
+ <artifactId>asm-renamed</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.aspectj</groupId>
+ <artifactId>ajde</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.aspectj</groupId>
+ <artifactId>build</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.aspectj</groupId>
+ <artifactId>tests</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
+
</dependencies>
<profiles>
@@ -200,6 +232,20 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <configuration>
+ <usedDependencies>
+ <!-- The tests need these during runtime, even though no direct usage is in our classes -->
+ <usedDependency>ant:ant-launcher</usedDependency>
+ <usedDependency>org.aspectj:asm-renamed</usedDependency>
+ <usedDependency>org.aspectj:ajde</usedDependency>
+ <usedDependency>org.aspectj:build</usedDependency>
+ <usedDependency>org.aspectj:tests</usedDependency>
+ </usedDependencies>
+ </configuration>
+ </plugin>
</plugins>
</build>