From 3f127347ceeb042f6624c9ce956cc31555bc376d Mon Sep 17 00:00:00 2001 From: Alexander Kriegisch Date: Wed, 28 Apr 2021 13:54:33 +0700 Subject: Fix missing dependencies in module 'run-all-junit-tests' Some runtime dependencies are reported as unused in Maven Dependency Plugin goal 'dependency:analyze', but actually they are needed. I noticed by chance when running RunTheseBeforeYouCommitTests in IntelliJ IDEA for the first time after a while and dependency modules could not find classes. Signed-off-by: Alexander Kriegisch --- run-all-junit-tests/pom.xml | 54 +++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 50 insertions(+), 4 deletions(-) (limited to 'run-all-junit-tests') 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 @@ run-all-junit-tests - - org.aspectj - asm-renamed - + org.aspectj util @@ -142,6 +139,41 @@ test-jar test + + + + ant + ant-launcher + ${lib.ant.version} + test + + + org.aspectj + asm-renamed + test + + + org.aspectj + ajde + ${project.version} + test + + + org.aspectj + build + ${project.version} + test + + + org.aspectj + tests + ${project.version} + test + + @@ -200,6 +232,20 @@ + + org.apache.maven.plugins + maven-dependency-plugin + + + + ant:ant-launcher + org.aspectj:asm-renamed + org.aspectj:ajde + org.aspectj:build + org.aspectj:tests + + + -- cgit v1.2.3