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 c73dc190a1 Ensure expected behaviour if skip.build.java.version is defined as false c73dc190a1 is described below commit c73dc190a1736070242649ac5c0c0c70c6c2d691 Author: Mark Thomas <ma...@apache.org> AuthorDate: Tue Jul 16 17:59:48 2024 +0100 Ensure expected behaviour if skip.build.java.version is defined as false --- build.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.xml b/build.xml index c1ed116515..0519374340 100644 --- a/build.xml +++ b/build.xml @@ -4041,7 +4041,7 @@ Read the Building page on the Apache Tomcat documentation site for details on ho </antcall> </target> - <target name="setup-bnd" depends="download-bnd" unless="skip.build.java.version"> + <target name="setup-bnd" depends="download-bnd" unless="${skip.build.java.version}"> <!-- Add bnd tasks to project --> <path id="bnd.classpath"> <fileset file="${bnd.jar}" /> @@ -4116,7 +4116,7 @@ Read the Building page on the Apache Tomcat documentation site for details on ho </sequential> </macrodef> - <target name="add-osgi" if="${addOSGi}" unless="skip.build.java.version"> + <target name="add-osgi" if="${addOSGi}" unless="${skip.build.java.version}" > <echo message="add-osgi ${jarfile} ${addOSGi}"></echo> <local name="filename"/> <basename property="filename" file="${jarfile}"/> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org