<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>
</build>
<dependencies>
+
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>util</artifactId>
<artifactId>org.aspectj.ajdt.core</artifactId>
<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>
<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>
<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>
<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>
</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>
<artifactId>tests</artifactId>
<dependencies>
+
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>util</artifactId>
<version>${project.version}</version>
<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>
- <!-- Identical to lib/ant/lib/ant-launcher.jar, a former system-scoped dependency -->
<groupId>ant</groupId>
<artifactId>ant-launcher</artifactId>
<version>${lib.ant.version}</version>
<scope>test</scope>
</dependency>
+
</dependencies>
<build>
<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>ant:ant-launcher</usedDependency>
</usedDependencies>
</configuration>