You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ja...@apache.org on 2023/08/13 06:13:12 UTC

[ant] branch master updated (f7f3bdfa0 -> 6eb966fba)

This is an automated email from the ASF dual-hosted git repository.

jaikiran pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/ant.git


    from f7f3bdfa0 bz-65176 introduce forkMode for use in forked tests of junitlauncher task
     new 90686ba58 fix typo
     new 6eb966fba missed updating junit dependency in pom.xml

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 WHATSNEW                 | 2 +-
 lib/libraries.properties | 6 ++++--
 src/etc/poms/pom.xml     | 2 +-
 3 files changed, 6 insertions(+), 4 deletions(-)


[ant] 01/02: fix typo

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jaikiran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant.git

commit 90686ba5880ab616ca17487db23e67597e413f0e
Author: Jaikiran Pai <ja...@apache.org>
AuthorDate: Sun Aug 13 11:42:32 2023 +0530

    fix typo
---
 WHATSNEW | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/WHATSNEW b/WHATSNEW
index 8e202fb3a..c07344b42 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -101,7 +101,7 @@ Fixed bugs:
    value to an incorrect date. This has now been fixed.
    Github Pull Request #186
 
- * fetch.xml didn't set up non-default repositories propery and thus
+ * fetch.xml didn't set up non-default repositories properly and thus
    failed to download JAI.
    Github Pull Request #191
 


[ant] 02/02: missed updating junit dependency in pom.xml

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jaikiran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant.git

commit 6eb966fba8413656865ad35ac9ffc975f9f26eb7
Author: Jaikiran Pai <ja...@apache.org>
AuthorDate: Sun Aug 13 11:42:51 2023 +0530

    missed updating junit dependency in pom.xml
---
 lib/libraries.properties | 6 ++++--
 src/etc/poms/pom.xml     | 2 +-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/lib/libraries.properties b/lib/libraries.properties
index 5a67e7126..206f3ff96 100644
--- a/lib/libraries.properties
+++ b/lib/libraries.properties
@@ -46,7 +46,8 @@ js.version=20.1.0
 js-scriptengine.version=${js.version}
 # Note - When updating the hamcrest versions here, make sure to also update the
 # "src-dist" target in build.xml to copy the correct hamcrest jars
-# into the source distribution
+# into the source distribution. Also update the hamcrest dependency
+# version in src/etc/poms/pom.xml.
 hamcrest-core.version=1.3
 hamcrest-library.version=${hamcrest-core.version}
 jai-core.version=1.1.3
@@ -63,7 +64,8 @@ jdepend.version=2.9.1
 jruby.version=1.6.8
 # Note - When updating the junit.version here, make sure to also update the
 # "src-dist" target in build.xml to copy the correct junit 4.x jar
-# into the source distribution
+# into the source distribution. Also update the junit dependency's version
+# in src/etc/poms/pom.xml.
 junit.version=4.13.2
 rhino.version=1.7.14
 junit-platform-launcher.version=1.10.0
diff --git a/src/etc/poms/pom.xml b/src/etc/poms/pom.xml
index 4371c155b..a7ad36689 100644
--- a/src/etc/poms/pom.xml
+++ b/src/etc/poms/pom.xml
@@ -112,7 +112,7 @@
      <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>4.13.1</version>
+      <version>4.13.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>