Release Ant 1.10.14?

2023-08-12 Thread Jaikiran Pai
We have a decent amount of fixes and changes since we released Ant 
1.10.13 https://github.com/apache/ant/blob/master/WHATSNEW. Plus, Ant 
1.10.13 broke some setups due to our changes to SecurityManager related 
usage. I recently reverted those SecurityManager related changes and 
have now pushed some commits which will no longer use SecurityManager 
when Ant is running in Java 18+ runtime environments. I would like to 
have these changes released so that there will be some amount of testing 
by actual projects, in context of our SecurityManager changes.


If there are no objections then I'll send out a formal vote mail for the 
1.10.14 release, this coming week.


-Jaikiran


-
To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org
For additional commands, e-mail: dev-h...@ant.apache.org



[GitHub] [ant] jaikiran closed pull request #121: use displayName instead of legacyReportingName in xml reports

2023-08-12 Thread via GitHub


jaikiran closed pull request #121: use displayName instead of 
legacyReportingName in xml reports
URL: https://github.com/apache/ant/pull/121


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org
For additional commands, e-mail: dev-h...@ant.apache.org



[GitHub] [ant] jaikiran commented on pull request #121: use displayName instead of legacyReportingName in xml reports

2023-08-12 Thread via GitHub


jaikiran commented on PR #121:
URL: https://github.com/apache/ant/pull/121#issuecomment-1675840459

   I'll go ahead and close this PR since this was already delivered in Ant 
1.10.10 release as part of https://bz.apache.org/bugzilla/show_bug.cgi?id=64564


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org
For additional commands, e-mail: dev-h...@ant.apache.org



[GitHub] [ant] jaikiran commented on pull request #121: use displayName instead of legacyReportingName in xml reports

2023-08-12 Thread via GitHub


jaikiran commented on PR #121:
URL: https://github.com/apache/ant/pull/121#issuecomment-1675840246

   Hello Vincent @don-vip,
   > Can we please get the same output as JUnit 4? 
Test.testMethod[displayedName]
   
   I had forgottent about this. But now that I went backed and looked at it, 
this should be easily customized using the `@ParameterizedTest`s `name` 
attribute. I have now added an example to Ant testsuite to show how it's done.  
See this 
https://github.com/apache/ant/blob/master/src/tests/junit/org/example/junitlauncher/jupiter/JupiterSampleTest.java#L80
 which uses:
   
   ```java
   @ParameterizedTest(name = "{displayName} asserting {0} is an even 
number")
   ...
   void testEvenFails(final int val) {
   
   ```
   and then in the junitlauncher's task:
   
   ```xml
   
   ...
   
   ...
   ```
   
   which then reports the test as:
   
   https://github.com/apache/ant/assets/143523/b937c32c-7ac2-4264-bd0d-9a3bfe90f1a9;>
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org
For additional commands, e-mail: dev-h...@ant.apache.org