Stefan Bodewig 8 years ago
parent
commit
a8b4654899
4 changed files with 13 additions and 5 deletions
  1. +6
    -1
      WHATSNEW
  2. +4
    -1
      fetch.xml
  3. +1
    -1
      lib/libraries.properties
  4. +2
    -2
      src/etc/poms/ant-apache-bcel/pom.xml

+ 6
- 1
WHATSNEW View File

@@ -1,6 +1,12 @@
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:
-----------

@@ -8,7 +14,6 @@ Fixed bugs:
value.
Bugzilla Report 60767


* bootstrapping Ant on Windows failed
Bugzilla Report 61027



+ 4
- 1
fetch.xml View File

@@ -248,7 +248,10 @@ Set -Ddest=LOCATION on the command line
<target name="bcel"
description="load bcel libraries"
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 name="jdepend"


+ 1
- 1
lib/libraries.properties View File

@@ -33,7 +33,7 @@ m2.repo=http://repo1.maven.org/maven2/
#when a specific dependency forces them to be out-of-order
ivy.version=2.4.0
antlr.version=2.7.7
bcel.version=5.1
bcel.version=6.0
bsf.version=2.4.0
bsh.version=2.0b4
bsh-core.version=${bsh.version}


+ 2
- 2
src/etc/poms/ant-apache-bcel/pom.xml View File

@@ -43,9 +43,9 @@
<scope>compile</scope>
</dependency>
<dependency>
<groupId>bcel</groupId>
<groupId>org.apache.bcel</groupId>
<artifactId>bcel</artifactId>
<version>5.1</version>
<version>6.0</version>
<scope>compile</scope>
</dependency>
</dependencies>


Loading…
Cancel
Save