Browse Source

Update commons-net and fix compilation on Java 5

master
Gintas Grigelionis 7 years ago
parent
commit
e740694111
6 changed files with 10 additions and 5 deletions
  1. +3
    -1
      WHATSNEW
  2. +1
    -0
      fetch.xml
  3. +3
    -1
      lib/libraries.properties
  4. +1
    -1
      src/etc/poms/ant-commons-net/pom.xml
  5. +1
    -1
      src/etc/poms/ant-javamail/pom.xml
  6. +1
    -1
      src/etc/poms/ant-jdepend/pom.xml

+ 3
- 1
WHATSNEW View File

@@ -19,7 +19,7 @@ Fixed bugs:
Bugzilla Report 60644

* 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.
Bugzilla Report 19516

@@ -67,6 +67,8 @@ Other changes:
for Ivy and AntUnit to facilitate releases and updates, respectively.
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
===================================



+ 1
- 0
fetch.xml View File

@@ -315,6 +315,7 @@ Set -Ddest=LOCATION on the command line
description="load Java Mail"
depends="init">
<f2 project="javax.mail" archive="javax.mail-api"/>
<f2 project="javax.activation" archive="activation"/>
</target>

<target name="jspc"


+ 3
- 1
lib/libraries.properties View File

@@ -31,13 +31,15 @@ m2.repo=http://repo1.maven.org/maven2/
# Versions of different libraries. Please keep in alphabetical order, except
# when a specific dependency forces them to be out-of-order
ivy.version=2.4.0
activation.version=1.1.1
ant-antunit.version=1.3
antlr.version=2.7.7
bcel.version=5.1
bsf.version=2.4.0
bsh.version=2.0b4
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-api.version=${commons-logging.version}
hamcrest-core.version=1.3


+ 1
- 1
src/etc/poms/ant-commons-net/pom.xml View File

@@ -45,7 +45,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>1.4.1</version>
<version>2.2</version>
<scope>compile</scope>
</dependency>
</dependencies>


+ 1
- 1
src/etc/poms/ant-javamail/pom.xml View File

@@ -53,7 +53,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1</version>
<version>1.1.1</version>
<scope>compile</scope>
</dependency>
</dependencies>


+ 1
- 1
src/etc/poms/ant-jdepend/pom.xml View File

@@ -47,7 +47,7 @@
<dependency>
<groupId>jdepend</groupId>
<artifactId>jdepend</artifactId>
<version>2.7</version>
<version>2.9.1</version>
<scope>compile</scope>
</dependency>
</dependencies>


Loading…
Cancel
Save