aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2021-03-29 09:57:56 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2021-03-29 13:52:01 +0700
commitd574f1c039c92108fd0845f7c6775588b69041a0 (patch)
treeb29c2947788369ef7af89365552e0346b0574600 /testing
parentea78c80177c79edc1426f8d573b04fd26ec6e53b (diff)
downloadaspectj-d574f1c039c92108fd0845f7c6775588b69041a0.tar.gz
aspectj-d574f1c039c92108fd0845f7c6775588b69041a0.zip
Replace Ant and Xerces system-scopes libraries by normal dependencies
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'testing')
-rw-r--r--testing/pom.xml32
1 files changed, 14 insertions, 18 deletions
diff --git a/testing/pom.xml b/testing/pom.xml
index d0c20be24..bbbe67319 100644
--- a/testing/pom.xml
+++ b/testing/pom.xml
@@ -92,18 +92,16 @@
<systemPath>${project.basedir}/../lib/jdiff/jdiff.jar</systemPath>
</dependency>
<dependency>
+ <!-- Identical to lib/ant/lib/ant.jar, a former system-scoped dependency -->
<groupId>ant</groupId>
<artifactId>ant</artifactId>
- <version>1.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/../lib/ant/lib/ant.jar</systemPath>
+ <version>${lib.ant.version}</version>
</dependency>
<dependency>
- <groupId>jakarta-regexp</groupId>
- <artifactId>jakarta-regexp</artifactId>
- <version>1.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/../lib/regexp/jakarta-regexp-1.2.jar</systemPath>
+ <!-- Identical to lib/regexp/jakarta-regexp-1.2.jar, a former system-scoped dependency -->
+ <groupId>regexp</groupId>
+ <artifactId>regexp</artifactId>
+ <version>${lib.regexp.version}</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
@@ -118,18 +116,16 @@
<type>test-jar</type>
</dependency>
<dependency>
- <groupId>xercesImpl</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>1.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/../lib/ant/lib/xercesImpl.jar</systemPath>
+ <!-- Identical to lib/ant/lib/xml-apis.jar, a former system-scoped dependency -->
+ <groupId>xerces</groupId>
+ <artifactId>xmlParserAPIs</artifactId>
+ <version>${lib.ant.xerces.version}</version>
</dependency>
<dependency>
- <groupId>xml-apis</groupId>
- <artifactId>xml-apis</artifactId>
- <version>1.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/../lib/ant/lib/xml-apis.jar</systemPath>
+ <!-- Identical to lib/ant/lib/xercesImpl.jar, a former system-scoped dependency -->
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>${lib.ant.xerces.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>