https://bz.apache.org/bugzilla/show_bug.cgi?id=61196master
@@ -1,6 +1,12 @@ | |||||
Changes from Ant 1.10.1 TO Ant 1.10.2 | Changes from Ant 1.10.1 TO Ant 1.10.2 | ||||
===================================== | ===================================== | ||||
Changes that could break older environments: | |||||
------------------------------------------- | |||||
* updated the dependency of BCEL to 6.0. | |||||
Bugzilla Report 61196 | |||||
Fixed bugs: | Fixed bugs: | ||||
----------- | ----------- | ||||
@@ -8,7 +14,6 @@ Fixed bugs: | |||||
value. | value. | ||||
Bugzilla Report 60767 | Bugzilla Report 60767 | ||||
* bootstrapping Ant on Windows failed | * bootstrapping Ant on Windows failed | ||||
Bugzilla Report 61027 | Bugzilla Report 61027 | ||||
@@ -248,7 +248,10 @@ Set -Ddest=LOCATION on the command line | |||||
<target name="bcel" | <target name="bcel" | ||||
description="load bcel libraries" | description="load bcel libraries" | ||||
depends="init"> | depends="init"> | ||||
<f2 project="bcel" /> | |||||
<copy todir="${dest.dir}"> | |||||
<url url="${m2.url}/org/apache/bcel/bcel/${bcel.version}/bcel-${bcel.version}.jar"/> | |||||
<flattenmapper/> | |||||
</copy> | |||||
</target> | </target> | ||||
<target name="jdepend" | <target name="jdepend" | ||||
@@ -33,7 +33,7 @@ m2.repo=http://repo1.maven.org/maven2/ | |||||
#when a specific dependency forces them to be out-of-order | #when a specific dependency forces them to be out-of-order | ||||
ivy.version=2.4.0 | ivy.version=2.4.0 | ||||
antlr.version=2.7.7 | antlr.version=2.7.7 | ||||
bcel.version=5.1 | |||||
bcel.version=6.0 | |||||
bsf.version=2.4.0 | bsf.version=2.4.0 | ||||
bsh.version=2.0b4 | bsh.version=2.0b4 | ||||
bsh-core.version=${bsh.version} | bsh-core.version=${bsh.version} | ||||
@@ -43,9 +43,9 @@ | |||||
<scope>compile</scope> | <scope>compile</scope> | ||||
</dependency> | </dependency> | ||||
<dependency> | <dependency> | ||||
<groupId>bcel</groupId> | |||||
<groupId>org.apache.bcel</groupId> | |||||
<artifactId>bcel</artifactId> | <artifactId>bcel</artifactId> | ||||
<version>5.1</version> | |||||
<version>6.0</version> | |||||
<scope>compile</scope> | <scope>compile</scope> | ||||
</dependency> | </dependency> | ||||
</dependencies> | </dependencies> | ||||