| # ----------------------------------------------------------------------------- |
| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # ----------------------------------------------------------------------------- |
| # build.properties.default |
| # |
| # This file provides the defaults for build properties that are likely to: |
| # - change over time such as those related to dependencies |
| # - be ones that individual developers will wish to customise. |
| # |
| # To customise the build, create a build.properties file in the top-level |
| # source directory (where this file is located) and use it to define new |
| # values for the build properties you wish to change. In addition to |
| # changing any of the properties defined in this file, you can change any |
| # build property defined in build.xml. More information is available in |
| # BUILDING.txt. |
| # ----------------------------------------------------------------------------- |
| |
| # ----- Version Control Flags ----- |
| version.major=11 |
| version.minor=0 |
| version.build=0 |
| version.patch=0 |
| version.suffix=-M15 |
| version.dev=-dev |
| |
| # ----- Build tools ----- |
| ant.version.required=1.10.2 |
| |
| # ----- Build control flags ----- |
| compile.debug=true |
| # Do not pass -deprecation (-Xlint:deprecation) flag to javac |
| compile.deprecation=false |
| |
| # ----- Documentation properties ----- |
| git.branch=main |
| |
| # ----- Code quality tools |
| # Note enabling validation uses Checkstyle which is LGPL licensed |
| execute.validate=false |
| |
| # Note the JaCoCo code coverage tool is EPLv2 licensed |
| # Enabling code coverage extends the time taken to run the tests by ~50% |
| test.coverage=false |
| |
| # Note the SpotBugs is LGPL licensed |
| execute.spotbugs=false |
| |
| # Javadoc - warnings are disabled as they are noisy with Java 18+ and CheckStyle |
| # works better for Tomcat. |
| javadoc.failonerror=true |
| javadoc.failonwarning=false |
| |
| # ----- Test configuration ----- |
| execute.test.nio=true |
| execute.test.nio2=true |
| # Stop testing if a failure occurs |
| test.haltonfailure=false |
| # Activate AccessLog during testing |
| test.accesslog=false |
| # Display the tests output on the console |
| test.verbose=true |
| |
| # Number of parallel threads to use for testing. The recommended value is one |
| # thread per core. |
| test.threads=1 |
| |
| # Some platforms (e.g. OSX El Capitan) require IPv4 to be the default for the |
| # multicast tests to work |
| java.net.preferIPv4Stack=false |
| |
| # ----- Release build settings ----- |
| # Location of GPG executable |
| gpg.exec=/path/to/gpg |
| |
| # Code signing of Windows installer |
| # See https://infra.apache.org/digicert-use.html for setup instructions |
| do.codesigning=false |
| codesigning.alias=Tomcat-PMC-cert-2023-11 |
| codesigning.digest=SHA-512 |
| codesigning.storetype=DIGICERTONE |
| # Set codesigning.storepass in build.properties with the following syntax |
| #codesigning.storepass=<api-key>|/path/to/Certificate_pkcs12.p12|<password> |
| |
| # ----- Settings to control downloading of files ----- |
| execute.download=true |
| trydownload.httpusecaches=true |
| |
| # ----- Default base path for dependencies ----- |
| # Please note this path must be absolute, not relative, |
| # as it is referenced with different working directory |
| # contexts by the various build scripts. |
| base.path=${user.home}/tomcat-build-libs |
| |
| # ---- Download locations for dependencies ----- |
| base-apache.loc.1=https://dlcdn.apache.org |
| base-apache.loc.2=https://archive.apache.org/dist |
| base-commons.loc.1=${base-apache.loc.1}/commons |
| base-commons.loc.2=${base-apache.loc.2}/commons |
| base-tomcat.loc.1=${base-apache.loc.1}/tomcat |
| base-tomcat.loc.2=${base-apache.loc.2}/tomcat |
| |
| base-gh.loc=https://github.com |
| base-sf.loc=https://downloads.sourceforge.net |
| # repo.maven.apache.org is the same as repo2.maven.org |
| base-maven.loc=https://repo.maven.apache.org/maven2 |
| |
| # Mirror, was used when there were problems with the main SF downloads site |
| # base-sf.loc=https://sunet.dl.sourceforge.net |
| |
| # ----- Eclipse JDT, version 4.7 or later -----# |
| # See https://cwiki.apache.org/confluence/display/TOMCAT/Managing+Tomcat%27s+Dependency+on+the+Eclipse+JDT+Core+Batch+Compiler |
| # |
| # Checksum is from "SHA512 Checksums for 4.29" link at |
| # https://download.eclipse.org/eclipse/downloads/drops4/R-4.29-202309031000/ |
| # https://download.eclipse.org/eclipse/downloads/drops4/R-4.29-202309031000/checksum/eclipse-4.29-SUMSSHA512 |
| # |
| jdt.version=4.29 |
| jdt.release=R-4.29-202309031000 |
| jdt.checksum.enabled=true |
| jdt.checksum.algorithm=SHA-512 |
| jdt.checksum.value=637595f5cdc8b479c6565d1f53bfacb6c3e7c603ccd17a0a67a2615537ade641553633deaede562a0f2a1ab40f17b66db571025aa8773432186d49647b8fdbe4 |
| jdt.home=${base.path}/ecj-${jdt.version} |
| jdt.jar=${jdt.home}/ecj-${jdt.version}.jar |
| # The download will be moved to the archive area eventually. We are taking care of that in advance. |
| jdt.loc.1=http://archive.eclipse.org/eclipse/downloads/drops4/${jdt.release}/ecj-${jdt.version}.jar |
| jdt.loc.2=http://download.eclipse.org/eclipse/downloads/drops4/${jdt.release}/ecj-${jdt.version}.jar |
| |
| # ----- Tomcat native library ----- |
| tomcat-native.version=2.0.6 |
| tomcat-native-openssl.version=3.0.11 |
| tomcat-native.src.checksum.enabled=true |
| tomcat-native.src.checksum.algorithm=SHA-512 |
| tomcat-native.src.checksum.value=d714fb96f880d0d565c58d25bb803fa9a144a6d87e825ad8d00aeac833b40a5512f888b94b3109853f8ee28b176b24fde95fb2d2a70ce65181a51ca7fc60cdab |
| tomcat-native.win.checksum.enabled=true |
| tomcat-native.win.checksum.algorithm=SHA-512 |
| tomcat-native.win.checksum.value=f45083d2148d6f17549eba395f6ac4f25f4ffc5cdd45a99d25bef89aee9395d1f913c3fcc27689648c13c298a86083ad7df49311fc3178cbadfa3c2d97b0dc38 |
| tomcat-native.home=${base.path}/tomcat-native-${tomcat-native.version} |
| tomcat-native.tar.gz=${tomcat-native.home}/tomcat-native.tar.gz |
| tomcat-native.loc.1=${base-tomcat.loc.1}/tomcat-connectors/native/${tomcat-native.version}/source/tomcat-native-${tomcat-native.version}-src.tar.gz |
| tomcat-native.loc.2=${base-tomcat.loc.2}/tomcat-connectors/native/${tomcat-native.version}/source/tomcat-native-${tomcat-native.version}-src.tar.gz |
| tomcat-native.win.1=${base-tomcat.loc.1}/tomcat-connectors/native/${tomcat-native.version}/binaries/tomcat-native-${tomcat-native.version}-openssl-${tomcat-native-openssl.version}-win32-bin.zip |
| tomcat-native.win.2=${base-tomcat.loc.2}/tomcat-connectors/native/${tomcat-native.version}/binaries/tomcat-native-${tomcat-native.version}-openssl-${tomcat-native-openssl.version}-win32-bin.zip |
| |
| # ----- NSIS, version 3.0 or later ----- |
| nsis.version=3.09 |
| nsis.checksum.enabled=true |
| nsis.checksum.algorithm=MD5|SHA-1 |
| nsis.checksum.value=2953f6074bcc4711b439a666eafbb91b|586855a743a6e0ade203d8758af303a48ee0716b |
| nsis.home=${base.path}/nsis-${nsis.version} |
| nsis.exe=${nsis.home}/makensis.exe |
| nsis.arch.dir=x86-unicode/ |
| nsis.installoptions.dll=${nsis.home}/Plugins/${nsis.arch.dir}InstallOptions.dll |
| nsis.nsexec.dll=${nsis.home}/Plugins/${nsis.arch.dir}nsExec.dll |
| nsis.nsisdl.dll=${nsis.home}/Plugins/${nsis.arch.dir}NSISdl.dll |
| nsis.system.dll=${nsis.home}/Plugins/${nsis.arch.dir}System.dll |
| nsis.nsdialogs.dll=${nsis.home}/Plugins/${nsis.arch.dir}nsDialogs.dll |
| nsis.loc=${base-sf.loc}/nsis/nsis-${nsis.version}.zip |
| |
| # ----- Commons Daemon, version 1.2.0 or later ----- |
| commons-daemon.version=1.3.4 |
| |
| # checksum for commons-daemon-1.3.4-bin.tar.gz |
| commons-daemon.bin.checksum.enabled=true |
| commons-daemon.bin.checksum.algorithm=SHA-512 |
| commons-daemon.bin.checksum.value=adc301fe9c7e50c5ed71c6775c8c41c33a369a05c30785ccb81209089603ae66563e958b466c99fc5cd27c12625bb7def68d7d91933aa8739eb645af37f3d03e |
| |
| # checksums for commons-daemon-1.3.4-native-src.tar.gz, commons-daemon-1.3.4-bin-windows.zip |
| commons-daemon.native.src.checksum.enabled=true |
| commons-daemon.native.src.checksum.algorithm=SHA-512 |
| commons-daemon.native.src.checksum.value=3c10ca72fc0eb7f755c0b5452bb6d5e8b42d8f363767ffcd9a6f0883026e688ea7dff50ea05e2675a7cdf9f413cb8012ee6b79e16dfc1cd4d83bd775ea10216c |
| commons-daemon.native.win.checksum.enabled=true |
| commons-daemon.native.win.checksum.algorithm=SHA-512 |
| commons-daemon.native.win.checksum.value=57a59d402dd0a1c99ed5da062b4616d54679e4208abec8b25742f5bf3ec1ee6b5187bc830edeaa218766215371b5519ce0a7186325c929c86b567a3078aa7555 |
| |
| commons-daemon.home=${base.path}/commons-daemon-${commons-daemon.version} |
| commons-daemon.jar=${commons-daemon.home}/commons-daemon-${commons-daemon.version}.jar |
| commons-daemon.native.win.home=${commons-daemon.home}/windows |
| commons-daemon.native.win.mgr.exe=${commons-daemon.native.win.home}/prunmgr.exe |
| commons-daemon.native.src.tgz=${commons-daemon.home}/commons-daemon-${commons-daemon.version}-native-src.tar.gz |
| commons-daemon.native.win.zip=${commons-daemon.home}/commons-daemon-${commons-daemon.version}-bin-windows-signed.zip |
| commons-daemon.bin.loc.1=${base-commons.loc.1}/daemon/binaries/commons-daemon-${commons-daemon.version}-bin.tar.gz |
| commons-daemon.bin.loc.2=${base-commons.loc.2}/daemon/binaries/commons-daemon-${commons-daemon.version}-bin.tar.gz |
| commons-daemon.native.src.loc.1=${base-commons.loc.1}/daemon/source/commons-daemon-${commons-daemon.version}-native-src.tar.gz |
| commons-daemon.native.src.loc.2=${base-commons.loc.2}/daemon/source/commons-daemon-${commons-daemon.version}-native-src.tar.gz |
| commons-daemon.native.win.loc.1=${base-commons.loc.1}/daemon/binaries/windows/commons-daemon-${commons-daemon.version}-bin-windows.zip |
| commons-daemon.native.win.loc.2=${base-commons.loc.2}/daemon/binaries/windows/commons-daemon-${commons-daemon.version}-bin-windows.zip |
| |
| # ----- JUnit Unit Test Suite, version 4.11 or later ----- |
| junit.version=4.13.2 |
| junit.checksum.enabled=true |
| junit.checksum.algorithm=MD5|SHA-1 |
| junit.checksum.value=d98a9a02a99a9acd22d7653cbcc1f31f|8ac9e16d933b6fb43bc7f576336b8f4d7eb5ba12 |
| junit.home=${base.path}/junit-${junit.version} |
| junit.jar=${junit.home}/junit-${junit.version}.jar |
| junit.loc=${base-maven.loc}/junit/junit/${junit.version}/junit-${junit.version}.jar |
| |
| # ----- Hamcrest Library, used by JUnit, version 1.3 or later ---- |
| hamcrest.version=2.2 |
| hamcrest.checksum.enabled=true |
| hamcrest.checksum.algorithm=SHA-512 |
| hamcrest.checksum.value=6b1141329b83224f69f074cb913dbff6921d6b8693ede8d2599acb626481255dae63de42eb123cbd5f59a261ac32faae012be64e8e90406ae9215543fbca5546 |
| hamcrest.home=${base.path}/hamcrest-${hamcrest.version} |
| hamcrest.jar=${hamcrest.home}/hamcrest-${hamcrest.version}.jar |
| hamcrest.loc=${base-maven.loc}/org/hamcrest/hamcrest/${hamcrest.version}/hamcrest-${hamcrest.version}.jar |
| |
| # ----- EasyMock, version 3.2 or later ----- |
| easymock.version=4.3 |
| easymock.checksum.enabled=true |
| easymock.checksum.algorithm=MD5|SHA-1 |
| easymock.checksum.value=f4d141b8c32c022def9089ee4f890c90|b0dbe2df1a71b8115835561f46a8f06cb168a94f |
| easymock.home=${base.path}/easymock-${easymock.version} |
| easymock.jar=${easymock.home}/easymock-${easymock.version}.jar |
| easymock.loc=${base-maven.loc}/org/easymock/easymock/${easymock.version}/easymock-${easymock.version}.jar |
| |
| # ----- cglib, used by EasyMock, version 2.2 or later ----- |
| cglib.version=3.3.0 |
| cglib.checksum.enabled=true |
| cglib.checksum.algorithm=SHA-512 |
| cglib.checksum.value=faa1d2121e87ae69e179e3aae217accd0834e0da716b91a029fd526e192612e71675f2740bedf48e23ef1edc45f672a2be1b3e78bbfb1ad59c96dd3d2feeedba |
| cglib.home=${base.path}/cglib-${cglib.version} |
| cglib.jar=${cglib.home}/cglib-nodep-${cglib.version}.jar |
| cglib.loc=${base-maven.loc}/cglib/cglib-nodep/${cglib.version}/cglib-nodep-${cglib.version}.jar |
| |
| # ----- objenesis, used by EasyMock, version 1.2 or later ----- |
| objenesis.version=3.3 |
| objenesis.checksum.enabled=true |
| objenesis.checksum.algorithm=MD5|SHA-1 |
| objenesis.checksum.value=ab0e0b2ab81affdd7f38bcc60fd85571|1049c09f1de4331e8193e579448d0916d75b7631 |
| objenesis.home=${base.path}/objenesis-${objenesis.version} |
| objenesis.jar=${objenesis.home}/objenesis-${objenesis.version}.jar |
| objenesis.loc=${base-maven.loc}/org/objenesis/objenesis/${objenesis.version}/objenesis-${objenesis.version}.jar |
| |
| # ----- UnboundID, used by unit tests, version 5.1.4 or later ----- |
| unboundid.version=6.0.10 |
| unboundid.checksum.enabled=true |
| unboundid.checksum.algorithm=SHA-512 |
| unboundid.checksum.value=a89df8aaf5d8612465f9be710bd98941f9e738cac6447a3b333a3f9e2fee6ce8120d3673d1cf06047442222f4273d19a4fc5e964088109e8e6b6e4852e7528b1 |
| unboundid.home=${base.path}/unboundid-${unboundid.version} |
| unboundid.jar=${unboundid.home}/unboundid-ldapsdk-${unboundid.version}.jar |
| unboundid.loc=${base-maven.loc}/com/unboundid/unboundid-ldapsdk/${unboundid.version}/unboundid-ldapsdk-${unboundid.version}.jar |
| |
| # ----- Checkstyle, version 6.16 or later ----- |
| checkstyle.version=10.12.4 |
| checkstyle.checksum.enabled=true |
| checkstyle.checksum.algorithm=SHA-512 |
| checkstyle.checksum.value=260087a664b4fbef9c49684729c722397e83d79569875037689f75526caacdfce0fc1e7ac7c1dd7214f74bba96466da5b66c5a02849a7b256c14ec246ae7f12a |
| checkstyle.home=${base.path}/checkstyle-${checkstyle.version} |
| checkstyle.jar=${checkstyle.home}/checkstyle-${checkstyle.version}-all.jar |
| checkstyle.loc=${base-gh.loc}/checkstyle/checkstyle/releases/download/checkstyle-${checkstyle.version}/checkstyle-${checkstyle.version}-all.jar |
| |
| # ----- JaCoCo code coverage tool ----- |
| jacoco.version=0.8.11 |
| jacoco.checksum.enabled=true |
| jacoco.checksum.algorithm=MD5|SHA-1 |
| jacoco.checksum.value=2e4992dc1d63a86cdcb5084f9a5b8ebc|027b1d840385543736a3a2c3652fa67ba39025d2 |
| jacoco.home=${base.path}/jacoco-${jacoco.version} |
| jacoco.jar=${jacoco.home}/lib/jacocoant.jar |
| jacoco.loc=${base-maven.loc}/org/jacoco/jacoco/${jacoco.version}/jacoco-${jacoco.version}.zip |
| |
| # ----- SpotBugs (originally FindBugs) ----- |
| spotbugs.version=4.8.0 |
| spotbugs.checksum.enabled=true |
| spotbugs.checksum.algorithm=SHA-512 |
| spotbugs.checksum.value=bec2c8179db0a1e28ac55ef66e130b74206fc82f840d356a4b0a302ebf285ce68d1e65347afa2e309a013c411f4151e4e2260d2a89e032a8ff66167475501ae6 |
| spotbugs.home=${base.path}/spotbugs-${spotbugs.version} |
| spotbugs.jar=${spotbugs.home}/lib/spotbugs-ant.jar |
| spotbugs.loc=${base-maven.loc}/com/github/spotbugs/spotbugs/${spotbugs.version}/spotbugs-${spotbugs.version}.tgz |
| |
| # ----- bnd, version 6.3.0 or later ----- |
| # ----- provides OSGI metadata for JARs ----- |
| bnd.version=7.0.0 |
| |
| # checksums for biz.aQute.bnd-6.4.1.jar |
| bnd.checksum.enabled=true |
| bnd.checksum.algorithm=MD5|SHA-1 |
| bnd.checksum.value=654776477ed942fc53f581fec66e253a|9937f6b7528628964a4ab8e50ba6b964d0310bce |
| |
| bnd.home=${base.path}/bnd-${bnd.version} |
| bnd.jar=${bnd.home}/biz.aQute.bnd-${bnd.version}.jar |
| bnd.loc=${base-maven.loc}/biz/aQute/bnd/biz.aQute.bnd/${bnd.version}/biz.aQute.bnd-${bnd.version}.jar |
| |
| # ----- Tomcat Migration Tool for Jakarta EE ----- |
| migration-lib.version=1.0.7 |
| |
| # checksums for jakartaee-migration-1.0.7-shaded.jar |
| migration-lib.checksum.enabled=true |
| migration-lib.checksum.algorithm=MD5|SHA-1 |
| migration-lib.checksum.value=378eeda7171284210688349f31e60e73|2baf7f729b409b47467c2ea998216441bf1c33cc |
| |
| migration-lib.home=${base.path}/migration-${migration-lib.version} |
| migration-lib.jar=${migration-lib.home}/jakartaee-migration-${migration-lib.version}-shaded.jar |
| migration-lib.loc=${base-maven.loc}/org/apache/tomcat/jakartaee-migration/${migration-lib.version}/jakartaee-migration-${migration-lib.version}-shaded.jar |
| |
| # ----- JSign, version 4.1 or later ----- |
| jsign.version=5.0 |
| |
| # checksums for JSign 5.0 |
| jsign.checksum.enabled=true |
| jsign.checksum.algorithm=MD5|SHA-1 |
| jsign.checksum.value=79c4f9bdff74a4ccee3d72f020ad45b7|5a6677625413e0d8acb52f80fa6fbb9031a6a9d0 |
| |
| jsign.home=${base.path}/jsign-${jsign.version} |
| jsign.jar=${jsign.home}/jsign-${jsign.version}.jar |
| jsign.loc=${base-maven.loc}/net/jsign/jsign/${jsign.version}/jsign-${jsign.version}.jar |
| |
| # ----- Derby, used by unit tests ----- |
| derby.version=10.16.1.1 |
| |
| # checksums for Derby 10.16.1.1 |
| derby.checksum.enabled=true |
| derby.checksum.algorithm=MD5|SHA-1 |
| derby.checksum.value=d9c38ece80f4ec0756f54b06716a3dd6|f9ca2054b3e33ec3f3f19df4a7490352d82de54a |
| derby-shared.checksum.enabled=true |
| derby-shared.checksum.algorithm=MD5|SHA-1 |
| derby-shared.checksum.value=e423cba3150f195debaf7ff0d307ecf6|77a3ec6b9791c7c29c76148c5d56fc1f3f12d638 |
| derby-tools.checksum.enabled=true |
| derby-tools.checksum.algorithm=MD5|SHA-1 |
| derby-tools.checksum.value=25b138905deb681ff167a5a04d29c3c6|32a5335f9087022cd8ca5c85f35f8c844b1360a9 |
| |
| derby.home=${base.path}/derby-${derby.version} |
| derby.jar=${derby.home}/derby-${derby.version}.jar |
| derby.loc=${base-maven.loc}/org/apache/derby/derby/${derby.version}/derby-${derby.version}.jar |
| derby-shared.jar=${derby.home}/derby-shared-${derby.version}.jar |
| derby-shared.loc=${base-maven.loc}/org/apache/derby/derbyshared/${derby.version}/derbyshared-${derby.version}.jar |
| derby-tools.jar=${derby.home}/derby-tools-${derby.version}.jar |
| derby-tools.loc=${base-maven.loc}/org/apache/derby/derbytools/${derby.version}/derbytools-${derby.version}.jar |