upgrade ant dependencies version to 1.10.8 to avoid security warning (#5275)

* upgrade ant dependency version

Signed-off-by: olivier lamy <oliver.lamy@gmail.com>

* ant 1.10.8
This commit is contained in:
Olivier Lamy 2020-09-18 06:25:04 +10:00 committed by GitHub
parent 0db3663a11
commit 53f3bbd32d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 5 deletions

View File

@ -49,14 +49,12 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>ant</groupId>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.6.5</version>
</dependency>
<dependency>
<groupId>ant</groupId>
<groupId>org.apache.ant</groupId>
<artifactId>ant-launcher</artifactId>
<version>1.6.5</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>

View File

@ -109,7 +109,6 @@
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.8.4</version>
</dependency>
</dependencies>
<reporting>

11
pom.xml
View File

@ -38,6 +38,7 @@
<javax.servlet.api.version>3.1.0</javax.servlet.api.version>
<weld.version>3.1.3.Final</weld.version>
<jetty.perf-helper.version>1.0.5</jetty.perf-helper.version>
<ant.version>1.10.8</ant.version>
<unix.socket.tmp></unix.socket.tmp>
<!-- enable or not TestTracker junit5 extension i.e log message when test method is starting -->
<jetty.testtracker.log>false</jetty.testtracker.log>
@ -1146,6 +1147,16 @@
<artifactId>grpc-core</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>${ant.version}</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-launcher</artifactId>
<version>${ant.version}</version>
</dependency>
</dependencies>
</dependencyManagement>