Skip to content

Commit

Permalink
[MANTRUN-240] Update ant to 1.10.14
Browse files Browse the repository at this point in the history
---
Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
slachiewicz committed Aug 21, 2023
1 parent 3441e4f commit 3622565
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ under the License.
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.10.13</version>
<version>1.10.14</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/it/custom-task-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ under the License.
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.10.12</version>
<version>1.10.14</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion src/it/filesets-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ under the License.
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.10.10</version>
<version>1.10.14</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
4 changes: 2 additions & 2 deletions src/it/filesets-test/verify.bsh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import org.codehaus.plexus.util.*;
try
{
File depsDir = new File( basedir, "target/dependencies" );
File antJar = new File( depsDir, "ant-1.10.10.jar" );
File antJar = new File( depsDir, "ant-1.10.14.jar" );
File junitJar = new File( depsDir, "junit-jupiter-engine-5.7.2.jar" );

if ( ! antJar.exists() || antJar.isDirectory() )
Expand All @@ -42,7 +42,7 @@ try
}

File deps2Dir = new File( basedir, "target/dependencies2" );
antJar = new File( deps2Dir, "ant-1.10.10.jar" );
antJar = new File( deps2Dir, "ant-1.10.14.jar" );
junitJar = new File( deps2Dir, "junit-jupiter-api-5.7.2.jar" );

if ( ! antJar.exists() || antJar.isDirectory() )
Expand Down
4 changes: 2 additions & 2 deletions src/site/apt/examples/customTasks.apt.vm
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Using tasks not included in Ant's default jar
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-commons-net</artifactId>
<version>1.10.10</version>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
Expand Down Expand Up @@ -124,4 +124,4 @@ Using tasks not included in Ant's default jar
</plugins>
</build>
</project>
+---+
+---+

0 comments on commit 3622565

Please sign in to comment.