@@ -19,7 +19,7 @@ Fixed bugs: | |||||
Bugzilla Report 60644 | Bugzilla Report 60644 | ||||
* Improvement to the Zip task for reduced memory usage in certain | * Improvement to the Zip task for reduced memory usage in certain | ||||
cases. Thanks to Glen Lewis for reporting the issue and | |||||
cases. Thanks to Glen Lewis for reporting the issue and | |||||
suggesting the fix. | suggesting the fix. | ||||
Bugzilla Report 19516 | Bugzilla Report 19516 | ||||
@@ -67,6 +67,8 @@ Other changes: | |||||
for Ivy and AntUnit to facilitate releases and updates, respectively. | for Ivy and AntUnit to facilitate releases and updates, respectively. | ||||
Github Pull Request #50 | Github Pull Request #50 | ||||
* Updated Commons Net to the latest Java 5 compatible version (2.2). | |||||
Changes from Ant 1.9.8 TO Ant 1.9.9 | Changes from Ant 1.9.8 TO Ant 1.9.9 | ||||
=================================== | =================================== | ||||
@@ -315,6 +315,7 @@ Set -Ddest=LOCATION on the command line | |||||
description="load Java Mail" | description="load Java Mail" | ||||
depends="init"> | depends="init"> | ||||
<f2 project="javax.mail" archive="javax.mail-api"/> | <f2 project="javax.mail" archive="javax.mail-api"/> | ||||
<f2 project="javax.activation" archive="activation"/> | |||||
</target> | </target> | ||||
<target name="jspc" | <target name="jspc" | ||||
@@ -31,13 +31,15 @@ m2.repo=http://repo1.maven.org/maven2/ | |||||
# Versions of different libraries. Please keep in alphabetical order, except | # Versions of different libraries. Please keep in alphabetical order, except | ||||
# 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 | ||||
activation.version=1.1.1 | |||||
ant-antunit.version=1.3 | ant-antunit.version=1.3 | ||||
antlr.version=2.7.7 | antlr.version=2.7.7 | ||||
bcel.version=5.1 | bcel.version=5.1 | ||||
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} | ||||
commons-net.version=1.4.1 | |||||
# Later versions are built with Java 6 | |||||
commons-net.version=2.2 | |||||
commons-logging.version=1.1 | commons-logging.version=1.1 | ||||
commons-logging-api.version=${commons-logging.version} | commons-logging-api.version=${commons-logging.version} | ||||
hamcrest-core.version=1.3 | hamcrest-core.version=1.3 | ||||
@@ -45,7 +45,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma | |||||
<dependency> | <dependency> | ||||
<groupId>commons-net</groupId> | <groupId>commons-net</groupId> | ||||
<artifactId>commons-net</artifactId> | <artifactId>commons-net</artifactId> | ||||
<version>1.4.1</version> | |||||
<version>2.2</version> | |||||
<scope>compile</scope> | <scope>compile</scope> | ||||
</dependency> | </dependency> | ||||
</dependencies> | </dependencies> | ||||
@@ -53,7 +53,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma | |||||
<dependency> | <dependency> | ||||
<groupId>javax.activation</groupId> | <groupId>javax.activation</groupId> | ||||
<artifactId>activation</artifactId> | <artifactId>activation</artifactId> | ||||
<version>1.1</version> | |||||
<version>1.1.1</version> | |||||
<scope>compile</scope> | <scope>compile</scope> | ||||
</dependency> | </dependency> | ||||
</dependencies> | </dependencies> | ||||
@@ -47,7 +47,7 @@ | |||||
<dependency> | <dependency> | ||||
<groupId>jdepend</groupId> | <groupId>jdepend</groupId> | ||||
<artifactId>jdepend</artifactId> | <artifactId>jdepend</artifactId> | ||||
<version>2.7</version> | |||||
<version>2.9.1</version> | |||||
<scope>compile</scope> | <scope>compile</scope> | ||||
</dependency> | </dependency> | ||||
</dependencies> | </dependencies> | ||||