This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push: new 40f0f7d571 Allow reproducible builds of all JDBC JAR files 40f0f7d571 is described below commit 40f0f7d571b2dcdc815d3560f7138a11120e476a Author: John Neffenger <j...@status6.com> AuthorDate: Sat Nov 12 18:05:24 2022 -0800 Allow reproducible builds of all JDBC JAR files --- modules/jdbc-pool/build.xml | 12 +++++++++--- webapps/docs/changelog.xml | 8 ++++++++ 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/modules/jdbc-pool/build.xml b/modules/jdbc-pool/build.xml index 8b387af62a..da4f801221 100644 --- a/modules/jdbc-pool/build.xml +++ b/modules/jdbc-pool/build.xml @@ -185,7 +185,9 @@ <target name="build-src"> <!-- connection pool source file--> - <jar jarfile="${tomcat-jdbc-src.jar}" update="true"> + <jar jarfile="${tomcat-jdbc-src.jar}" + update="true" + modificationtime="${tstamp.file}"> <fileset dir="${basedir}/src/main/java"> <include name="org/apache/tomcat/jdbc/**" /> </fileset> @@ -207,7 +209,9 @@ <include name="org/apache/tomcat/jdbc/**" /> </javac> <!-- connection pool JAR File --> - <jar jarfile="${tomcat-jdbc-test.jar}" update="true"> + <jar jarfile="${tomcat-jdbc-test.jar}" + update="true" + modificationtime="${tstamp.file}"> <fileset dir="${tomcat.testclasses}"> <include name="org/apache/tomcat/jdbc/**" /> </fileset> @@ -216,7 +220,9 @@ </fileset> <fileset refid="license.notice"/> </jar> - <jar jarfile="${tomcat-jdbc-test-src.jar}" update="true"> + <jar jarfile="${tomcat-jdbc-test-src.jar}" + update="true" + modificationtime="${tstamp.file}"> <fileset dir="${basedir}/src/test/java"> <include name="org/apache/tomcat/jdbc/**" /> </fileset> diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index a1fe66e758..83a1958221 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -231,6 +231,14 @@ </fix> </changelog> </subsection> + <subsection name="jdbc-pool"> + <changelog> + <fix> + <bug>66346</bug>: Ensure all JDBC pool JARs are reproducible. Pull + request <pr>566</pr> provided by John Neffenger. (markt) + </fix> + </changelog> + </subsection> <subsection name="Other"> <changelog> <update> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org