diff options
Diffstat (limited to 'tests/pom.xml')
-rw-r--r-- | tests/pom.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/pom.xml b/tests/pom.xml index a8d5b27aa..d276169f7 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -85,6 +85,13 @@ <version>${project.version}</version> <scope>test</scope> </dependency> + <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> @@ -100,6 +107,16 @@ </includes> </configuration> </plugin> + <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>ant:ant-launcher</usedDependency> + </usedDependencies> + </configuration> + </plugin> </plugins> </build> |