diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-03-29 09:57:56 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-03-29 13:52:01 +0700 |
commit | d574f1c039c92108fd0845f7c6775588b69041a0 (patch) | |
tree | b29c2947788369ef7af89365552e0346b0574600 /loadtime | |
parent | ea78c80177c79edc1426f8d573b04fd26ec6e53b (diff) | |
download | aspectj-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 'loadtime')
-rw-r--r-- | loadtime/pom.xml | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/loadtime/pom.xml b/loadtime/pom.xml index 91a850ef7..5b19cb73c 100644 --- a/loadtime/pom.xml +++ b/loadtime/pom.xml @@ -55,18 +55,16 @@ <version>${project.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/xml-apis.jar, a former system-scoped dependency --> + <groupId>xerces</groupId> + <artifactId>xmlParserAPIs</artifactId> + <version>${lib.ant.xerces.version}</version> </dependency> <dependency> - <groupId>xercesImpl</groupId> + <!-- Identical to lib/ant/lib/xercesImpl.jar, a former system-scoped dependency --> + <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> - <version>1.0</version> - <scope>system</scope> - <systemPath>${project.basedir}/../lib/ant/lib/xercesImpl.jar</systemPath> + <version>${lib.ant.xerces.version}</version> </dependency> <dependency> <groupId>jrockit</groupId> @@ -75,17 +73,16 @@ <scope>system</scope> <systemPath>${project.basedir}/../lib/ext/jrockit/jrockit.jar</systemPath> </dependency> - + <dependency> - <groupId>ant</groupId> + <!-- 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> </dependencies> -<!-- +<!-- <build> <plugins> <plugin> |