This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit a86f15c09a90182d659b87347d0114dde90a7056 Author: Mark Thomas <[email protected]> AuthorDate: Fri Nov 15 20:51:59 2019 +0000 Restore compile.release where it can be done without breaking the build --- build.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.xml b/build.xml index ab3c012..029b0b8 100644 --- a/build.xml +++ b/build.xml @@ -87,6 +87,7 @@ <!-- Servlet 3.1 spec requires Java 7+ --> <property name="compile.source" value="7"/> <property name="compile.target" value="7"/> + <property name="compile.release" value="7"/> <property name="min.java.version" value="7"/> <!-- Locations to create the JAR artifacts --> @@ -637,6 +638,7 @@ deprecation="${compile.deprecation}" source="${compile.source}" target="${compile.target}" + release="${compile.release}" encoding="ISO-8859-1" includeAntRuntime="true" > <!-- Uncomment this to show unchecked warnings: @@ -1160,6 +1162,7 @@ debug="${compile.debug}" deprecation="${compile.deprecation}" source="${compile.source}" target="${compile.target}" + release="${compile.release}" classpath="${tomcat.classes}" encoding="ISO-8859-1" includeantruntime="false"> @@ -1171,6 +1174,7 @@ debug="${compile.debug}" deprecation="${compile.deprecation}" source="${compile.source}" target="${compile.target}" + release="${compile.release}" classpath="${tomcat.classes}" encoding="ISO-8859-1" includeantruntime="false"> @@ -1403,6 +1407,7 @@ deprecation="${compile.deprecation}" source="${compile.source}" target="${compile.target}" + release="${compile.release}" encoding="ISO-8859-1" includeantruntime="true"> <classpath refid="tomcat.test.classpath" /> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
