summaryrefslogtreecommitdiff
path: root/build.xml
Commit message (Collapse)AuthorAgeFilesLines
* Next is 1.10.14 of AntJaikiran Pai2023-01-101-3/+3
|
* redo security manager setting to allow calling System.setSecurityManager at ↵Jaikiran Pai2022-12-111-1/+4
| | | | | | | | | | | runtime - Reverts the changes done to launch scripts which were checking for the Java runtime version to decide whether or not to set java.security.manager=allow - Introduces a new "allow" Java class (in unnamed package) as a workaround to allow setting java.security.manager=allow on (older) versions of Java which don't recognize "allow" as a predefined text for that property - Packages the "allow" Java class into ant-launcher.jar, which is the same jar file containing the org.apache.tools.ant.launch.Launcher class that gets launched from the Ant startup scripts - Sets java.security.manager=allow explicitly in Ant launch scripts, irrespective of which Java runtime version is being used
* bz-66164 Don't change file permissions on unrelated files in dest directory, ↵Jaikiran Pai2022-08-181-16/+0
| | | | when building and copying over Ant distribution
* launch Ant project tests by passing java.security.manager=allow on Java 18Jaikiran Pai2021-11-281-0/+10
|
* make javamail.complete (that we lost somewhere) accept JakartaMailStefan Bodewig2021-10-301-0/+19
|
* Merge pull request #161 from twogee/jakarta-mailStefan Bodewig2021-10-281-0/+13
|\ | | | | Use Jakarta EE
| * Use Jakarta EEtwogee2021-10-141-0/+13
| |
* | Next dev version post 1.10.12 release of AntJaikiran Pai2021-10-191-3/+3
| |
* | package only the exact jars in lib/optional of source distributionJaikiran Pai2021-10-131-2/+4
|/
* Merge tag 'rel/1.10.11' and prepare for next iterationStefan Bodewig2021-07-131-3/+3
|\ | | | | | | Apache Ant 1.10.11
| * Prepare for RC1 of version 1.10.11 of Antrel/1.10.11ANT_1.10.11_RC1Stefan Bodewig2021-07-101-2/+2
|/
* Release 1.10.10 of AntJaikiran Pai2021-04-171-3/+3
|
* bz-65110 Fix the ant-testutil-sources.jar generationJaikiran Pai2021-01-291-1/+1
|
* Merge tag 'rel/1.10.9'Stefan Bodewig2020-09-301-3/+3
|\ | | | | | | | | | | | | | | | | | | | | | | Tagging version 1.10.9 of Ant # gpg: Signatur vom Mi 30 Sep 2020 18:21:08 CEST # gpg: mittels DSA-Schlüssel CE8075A251547BEE249BC151A2115AE15F6B8B72 # gpg: Aussteller "bodewig@apache.org" # gpg: Korrekte Signatur von "Stefan Bodewig <bodewig@apache.org>" [vollständig] # gpg: alias "Stefan Bodewig <stefan.bodewig@freenet.de>" [vollständig] # gpg: alias "Stefan Bodewig <stefan@samaflost.de>" [vollständig] # Haupt-Fingerabdruck = CE80 75A2 5154 7BEE 249B C151 A211 5AE1 5F6B 8B72
| * Prepare for RC1 of version 1.10.9 of Antrel/1.10.9ANT_1.10.9_RC1Stefan Bodewig2020-09-271-2/+2
|/
* enable Nashorn compatibility when running GraalVM JSStefan Bodewig2020-09-251-1/+45
| | | | and add a magic property to disable it again
* Merge tag 'rel/1.10.8' and bump versionsStefan Bodewig2020-05-131-3/+3
|\ | | | | | | Tagging version 1.10.8 of Ant
| * Prepare for RC1 of version 1.10.8 of Antrel/1.10.8ANT_1.10.8_RC1Stefan Bodewig2020-05-101-2/+2
|/
* bz-63438 Undo part of commit 6656db28bb79912ec1c744f34affbda53f86e6fd, to ↵Jaikiran Pai2020-01-101-2/+15
| | | | fix broken javadocs target
* Merge tag 'rel/1.10.7'Jaikiran Pai2019-09-051-3/+3
|\
| * Prepare for RC1 of 1.10.7 Ant releaserel/1.10.7ANT_1.10.7_RC1Jaikiran Pai2019-09-011-2/+2
|/
* Add ability to optionally skip the build target (which does the compilation)Jaikiran Pai2019-08-251-1/+1
|
* Separate out the compilation for classes that need JDK9+, from the regular ↵Jaikiran Pai2019-08-031-48/+73
| | | | | | compilation and set the --release to 8 for the regular compilation target Mail discussion reference https://mail-archives.apache.org/mod_mbox/ant-dev/201905.mbox/%3c10b1ea11-5ac7-df66-c020-038c8a1a0045@apache.org%3e
* updated reference to license from http to https usingjkf2019-05-251-1/+1
| | | | find . -type f -exec sed -i "s/http:\/\/www.apache.org\/licenses\/LICENSE-2.0/https:\/\/www.apache.org\/licenses\/LICENSE-2.0/" {} \;
* Merge tag 'rel/1.10.6'Jaikiran Pai2019-05-081-3/+3
|\ | | | | | | Tag version 1.10.6 of Ant
| * Prepare RC2 of 1.10.6 Ant releaserel/1.10.6ANT_1.10.6_RC2Jaikiran Pai2019-05-021-2/+2
|/ | | | Signed-off-by: Jaikiran Pai <jaikiran@apache.org>
* Don't use -html4 for javadoc output for Ant classesJaikiran Pai2019-03-201-9/+0
| | | | | | javadoc on Ant classes now conform to the default output format of javadoc tool (which is HTML5 in recent versions of that tool), so we no longer have to override the output format to -html4.
* Use -html4 for javadoc generationJaikiran Pai2019-03-191-0/+9
| | | | | | | | | | javadoc in our classes don't yet comply to html5 semantics. When generating javadocs for our project, using JDK 11, we run into build failures since JDK 11 javadoc tool defaults to html5 output and is strict if the classes don't comply to the semantics. The commit here explicitly sets the output to html4 to avoid such failures, till we fix our javadoc to comply with html5
* java.activation module has been removed from Java 11Jaikiran Pai2019-03-191-4/+0
|
* Make it easier, during release, to verify that JDK9+ is being usedJaikiran Pai2019-03-191-1/+5
|
* Merge 1.9.x branch into masterJaikiran Pai2019-03-181-24/+0
|\
| * SHA1 checksum is no longer recommended by Apache release processJaikiran Pai2019-03-181-24/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | The Apache release process no longer recommends using SHA1 checksums for artifacts http://www.apache.org/dev/release-signing.html#sha1. The commit here removes generation of SHA1 for Ant distribution artifacts. Furthermore, the checksum generation for artifacts that we upload to Maven is also now removed, since the Nexus instance generates those dynamically when the artifacts are uploaded to Nexus as stated at http://www.apache.org/dev/publishing-maven-artifacts.html#prepare-release : "You don't need artifacts for your checksum files (if you create any) since Nexus will create MD5 and SHA1 checksums on the fly anyway."
| * Merge tag 'rel/1.9.14' into 1.9.x branchJaikiran Pai2019-03-171-3/+3
| |\ | | | | | | | | | Tagging version 1.9.14 of Ant
| | * Release RC1 of 1.9.14rel/1.9.14ANT_1914_RC1Jaikiran Pai2019-03-121-2/+2
| |/
* | Added tasks for JDK's jmod and jlink tools.VGR2018-12-151-0/+6
| |
* | [junitlauncher] Add a check in the build to ensure that the junitlauncher ↵Jaikiran Pai2018-10-291-0/+28
| | | | | | | | classes in "confined" package do not depend on classes they aren't meant to
* | there are no tests in MagicTestNames, thanks GintasStefan Bodewig2018-10-291-0/+1
| |
* | ensure MagicTestNames is part of testutil jarremove-tests-constants-from-main-treeStefan Bodewig2018-10-281-0/+1
| |
* | More hardcoded assumptions about file tree structureGintas Grigelionis2018-10-251-2/+3
| |
* | fix the needs.junit.engine.jupiter and needs.junit.engine.vintage selectors ↵Jaikiran Pai2018-08-221-2/+2
| | | | | | | | in the build file, to narrow down their selection to only the JUnitLauncherTaskTest
* | Fix test compilation (org.example.junitlauncher.Tracker requires ↵Jaikiran Pai2018-08-221-1/+4
| | | | | | | | junitlauncher optional dep)
* | move the junitlauncher jupiter sample test to the org/example directory, ↵Jaikiran Pai2018-08-151-4/+10
| | | | | | | | just like the vintage engine ones
* | Merge 1.9.x branch into masterJaikiran Pai2018-08-141-0/+5
|\ \ | |/
| * bz-62621 conditionally enable EmailTaskTestJaikiran Pai2018-08-141-0/+4
| |
| * Exclude TestHelper from being considered as a testJaikiran Pai2018-08-141-0/+1
| |
| * merge rel/1.9.13 and prepare next iterationStefan Bodewig2018-07-131-3/+3
| |
| * Merge tag 'rel/1.9.12' into 1.9.x and prepare for next cycleStefan Bodewig2018-06-221-3/+3
| |\ | | | | | | | | | Tagging version 1.9.12 of Ant
| | * prepare Ant 1.9.12 RC1rel/1.9.12ANT_1_9_12_RC1Stefan Bodewig2018-06-191-2/+2
| |/
| * Merge tag 'rel/1.9.11' into 1.9.xStefan Bodewig2018-03-271-3/+3
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tagging version 1.9.11 of Ant # gpg: WARNING: unsafe permissions on homedir '/home/stefan/.gnupg' # gpg: keyserver option 'ca-cert-file' is obsolete; please use 'hkp-cacert' in dirmngr.conf # gpg: keyserver option 'no-try-dns-srv' is unknown # gpg: Signature made Di 27 Mär 2018 20:18:48 CEST # gpg: using DSA key A2115AE15F6B8B72 # gpg: issuer "bodewig@apache.org" # gpg: Oops: keyid_from_fingerprint: no pubkey # gpg: Oops: keyid_from_fingerprint: no pubkey # gpg: key 0000000000000000 occurs more than once in the trustdb # gpg: Good signature from "Stefan Bodewig <bodewig@apache.org>" [ultimate] # gpg: aka "Stefan Bodewig <stefan.bodewig@freenet.de>" [ultimate] # gpg: aka "Stefan Bodewig <stefan@samaflost.de>" [ultimate] # Primary key fingerprint: CE80 75A2 5154 7BEE 249B C151 A211 5AE1 5F6B 8B72
| | * prepare RC1 of Ant 1.9.11rel/1.9.11ANT_1_9_11_RC1Stefan Bodewig2018-03-231-2/+2
| |/