Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | directly log link's output to Ant's loglogoutput-jmod-link | Stefan Bodewig | 2018-12-15 | 1 | -17/+15 |
| | |||||
* | whitespace - closes #80 | Stefan Bodewig | 2018-12-15 | 3 | -4/+4 |
| | |||||
* | Based on feedback, added self to contributors, added line to WHATSNEW, added ↵ | VGR | 2018-12-15 | 11 | -248/+864 |
| | | | | Ant version to docs, and replaced GPL man pages with BSD-licensed man pages. | ||||
* | Added tasks for JDK's jmod and jlink tools. | VGR | 2018-12-15 | 17 | -7/+8374 |
| | |||||
* | Update the manual of junitlauncher task as well as add a note in WHATSNEW ↵ | Jaikiran Pai | 2018-12-14 | 2 | -2/+27 |
| | | | | about the changed class names of that task | ||||
* | Fixing a potential ConcurrentModificationException that could occur when ↵ | mharmer | 2018-12-12 | 4 | -16/+37 |
| | | | | | | running Ant with the Parallel-Ant executor. This closes #81 pull request at github/apache/ant | ||||
* | [junitlauncher] - Switch back to issuing a separate LauncherDiscoveryRequest | Jaikiran Pai | 2018-12-07 | 5 | -43/+71 |
| | | | | | | | | | | | | | | | | | | | | | | | for each of the test class that are selected by the <testclasses> usage In 1.10.5 version (the latest released) of Ant, we used to launch multiple LauncherDiscoveryRequest (a JUnit 5 construct), one each for a test class, that belonged to the <testclasses> usage. Commit 3f806148c3f3542b8526d5f91f10d6189bf0607d changed it to launch one single LauncherDiscoveryRequest (and including all those test classes in that request) because it seemed more logical to do so. However, recent tests/experimentation of the master branch has shown that it introduces complexities when the "legacy-xml" listener (the one which supports generating test results in xml format that junitreport understands) is used. These complexities include - expecting each test class to have a separate report file, but isn't limited to that. Solving these issues isn't easy and probably not worth it, given that the only reason we started using a single LauncherDiscoveryRequest is because it just seemed logical and there is no other strong reason to do so. This commit switches back to the behaviour that's been there in 1.10.5 version, to issue multiple separate LauncherDiscoveryRequest(s) one each for the test class that's selected through the use of <testclasses>. | ||||
* | bz-62952 Fix the jar-test.xml#testMultiReleaseJar antunit test case | Jaikiran Pai | 2018-12-05 | 1 | -3/+16 |
| | |||||
* | bz-62952 Make AntClassLoader multi-release jar aware when it deals with ↵ | Jaikiran Pai | 2018-12-05 | 4 | -3/+118 |
| | | | | java.util.jar.JarFile | ||||
* | A typo | Gintas Grigelionis | 2018-11-20 | 1 | -1/+1 |
| | |||||
* | Fix javadoc | Gintas Grigelionis | 2018-11-20 | 4 | -2/+12 |
| | |||||
* | Make DataType and Reference generic | Gintas Grigelionis | 2018-11-19 | 57 | -261/+379 |
| | |||||
* | Remove unused imports | Gintas Grigelionis | 2018-11-19 | 7 | -9/+0 |
| | |||||
* | Refactor getZipEntryStream | Gintas Grigelionis | 2018-11-19 | 3 | -39/+39 |
| | |||||
* | Avoid leaks in AntAnalyzer | Gintas Grigelionis | 2018-11-18 | 1 | -8/+25 |
| | |||||
* | Revert: any RuntimeException must be wrapped | Gintas Grigelionis | 2018-11-18 | 1 | -1/+3 |
| | |||||
* | Fix javadoc | Gintas Grigelionis | 2018-11-17 | 1 | -0/+1 |
| | |||||
* | Fix backwards compatibility | Gintas Grigelionis | 2018-11-17 | 3 | -7/+10 |
| | |||||
* | Use try-with-resources | Gintas Grigelionis | 2018-11-17 | 16 | -173/+67 |
| | |||||
* | Update javadoc | Gintas Grigelionis | 2018-11-17 | 2 | -0/+5 |
| | |||||
* | Make CharSet backwards compatible | Gintas Grigelionis | 2018-11-17 | 3 | -4/+91 |
| | |||||
* | A new CharSet type to hold available Charset names | Gintas Grigelionis | 2018-11-14 | 3 | -1/+153 |
| | |||||
* | Implement ArcType as suggested | Gintas Grigelionis | 2018-11-14 | 1 | -13/+52 |
| | |||||
* | Change an attribute name and explain why | Gintas Grigelionis | 2018-11-14 | 2 | -16/+44 |
| | |||||
* | closes #77 | Stefan Bodewig | 2018-11-14 | 0 | -0/+0 |
| | |||||
* | Avoid FileInputStream and FileOutputStream. | reudismam@gmail.com | 2018-11-14 | 4 | -8/+12 |
| | |||||
* | Add “since” tag to documentation | Gintas Grigelionis | 2018-11-13 | 1 | -0/+1 |
| | |||||
* | Include fix for bz-62890 in WHATSNEW | Jaikiran Pai | 2018-11-13 | 1 | -0/+7 |
| | |||||
* | bz-62890 don't cache the case sensitivity of the filesystem. | Jaikiran Pai | 2018-11-13 | 1 | -31/+19 |
| | | | | Discussed at http://mail-archives.apache.org/mod_mbox/ant-dev/201811.mbox/%3c87efbq6uym.fsf@v45346.1blu.de%3e | ||||
* | Get most of junit task tests running under Surefire | Gintas Grigelionis | 2018-11-12 | 3 | -16/+40 |
| | |||||
* | Complete antrun plugin update fix unit task dependencies | Gintas Grigelionis | 2018-11-11 | 3 | -14/+20 |
| | |||||
* | Get the tests dependent on ANT_HOME running | Gintas Grigelionis | 2018-11-11 | 2 | -10/+25 |
| | |||||
* | Simplify tests, use Rule and/or try with resources | Gintas Grigelionis | 2018-11-11 | 6 | -281/+233 |
| | |||||
* | Simplify tests, use Charset | Gintas Grigelionis | 2018-11-11 | 4 | -42/+48 |
| | |||||
* | Tidy up code, use out-of-the-box test rules | Gintas Grigelionis | 2018-11-09 | 15 | -99/+57 |
| | |||||
* | bz-62890 fix the newly added test in SyncTest. Also, in the implementation ↵ | Jaikiran Pai | 2018-11-08 | 2 | -3/+22 |
| | | | | of FileUtils#isCaseSensitiveFileSystem, take into account Files.isSame can throw NoSuchFileException in the absence of either of the paths being checked | ||||
* | bz-62890 Make sure the sync task considers the case sensitivity of the ↵ | Jaikiran Pai | 2018-11-08 | 5 | -0/+150 |
| | | | | destination directory's filesystem while looking for orphan files to delete | ||||
* | Update the junitlauncher task to explain the ability to include JUnit ↵ | Jaikiran Pai | 2018-11-07 | 1 | -31/+43 |
| | | | | libraries as part of the task's classpath | ||||
* | Remove a nonexistent type | Gintas Grigelionis | 2018-11-06 | 1 | -1/+0 |
| | |||||
* | Merge 1.9.x branch into master | Jaikiran Pai | 2018-11-06 | 7 | -54/+1 |
|\ | |||||
| * | Revert "bz-62849 Check for filesystem loops due to symbolic links, in ↵ | Jaikiran Pai | 2018-11-04 | 7 | -55/+1 |
| | | | | | | | | | | | | DirectoryScanner and Delete task" since it causes a regression that's exposed by the dirscanner-symlinks-test.xml antunit testcase This reverts commit 05bfffa247c470d12a5b93326a05d3fd0d890ce0 and 506c3ab47a1d69ecff691cc535ae8368d0aeb1db. | ||||
* | | Revert last 5 commits | Gintas Grigelionis | 2018-11-04 | 103 | -549/+625 |
| | | |||||
* | | SonarQube: nested if’s is a major code smell | Gintas Grigelionis | 2018-11-04 | 29 | -361/+254 |
| | | |||||
* | | SonarQube: missing annotations on overridden methods | Gintas Grigelionis | 2018-11-04 | 23 | -27/+96 |
| | | | | | | (major code smell) | ||||
* | | Revert a regression, improve tests | Gintas Grigelionis | 2018-11-04 | 2 | -9/+8 |
| | | |||||
* | | SonarQube: unnecessary parentheses is a major code smell | Gintas Grigelionis | 2018-11-04 | 40 | -141/+104 |
| | | |||||
* | | Checkstyle: dangling operators | Gintas Grigelionis | 2018-11-04 | 19 | -98/+98 |
| | | |||||
* | | Merge 1.9.x branch into master | Jaikiran Pai | 2018-11-03 | 7 | -1/+55 |
|\ \ | |/ | |||||
| * | Record the fix for bz-62849, contributed by Michael Barker | Jaikiran Pai | 2018-11-03 | 3 | -0/+10 |
| | | |||||
| * | bz-62849 Check for filesystem loops due to symbolic links, in ↵ | Michael Barker | 2018-11-03 | 4 | -1/+45 |
| | | | | | | | | DirectoryScanner and Delete task |