You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@apache.org on 2020/12/15 10:16:26 UTC

[tomcat] branch 8.5.x updated (db9fae0 -> 15c5804)

This is an automated email from the ASF dual-hosted git repository.

remm pushed a change to branch 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git.


    from db9fae0  Add a line about POEditor and a link to the WIKI page
     new 7bc3d28  Checkstyle
     new 15c5804  Add opens for Java 16

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CONTRIBUTING.md  | 2 +-
 bin/catalina.bat | 1 +
 bin/catalina.sh  | 1 +
 build.xml        | 5 +++++
 4 files changed, 8 insertions(+), 1 deletion(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[tomcat] 02/02: Add opens for Java 16

Posted by re...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

remm pushed a commit to branch 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit 15c58043180cb885e7ff4bbb7dd135750d4e3e54
Author: remm <re...@apache.org>
AuthorDate: Tue Dec 15 11:10:07 2020 +0100

    Add opens for Java 16
---
 bin/catalina.bat | 1 +
 bin/catalina.sh  | 1 +
 build.xml        | 5 +++++
 3 files changed, 7 insertions(+)

diff --git a/bin/catalina.bat b/bin/catalina.bat
index 20cf71d..0b49723 100755
--- a/bin/catalina.bat
+++ b/bin/catalina.bat
@@ -239,6 +239,7 @@ set LOGGING_MANAGER=-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogMa
 rem Configure JAVA 9 specific start-up parameters
 set "JDK_JAVA_OPTIONS=%JDK_JAVA_OPTIONS% --add-opens=java.base/java.lang=ALL-UNNAMED"
 set "JDK_JAVA_OPTIONS=%JDK_JAVA_OPTIONS% --add-opens=java.base/java.io=ALL-UNNAMED"
+set "JDK_JAVA_OPTIONS=%JDK_JAVA_OPTIONS% --add-opens=java.base/java.util=ALL-UNNAMED"
 set "JDK_JAVA_OPTIONS=%JDK_JAVA_OPTIONS% --add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED"
 
 rem Java 9 no longer supports the java.endorsed.dirs
diff --git a/bin/catalina.sh b/bin/catalina.sh
index 3f8e5cd..f3490a8 100755
--- a/bin/catalina.sh
+++ b/bin/catalina.sh
@@ -326,6 +326,7 @@ fi
 # Add the JAVA 9 specific start-up parameters required by Tomcat
 JDK_JAVA_OPTIONS="$JDK_JAVA_OPTIONS --add-opens=java.base/java.lang=ALL-UNNAMED"
 JDK_JAVA_OPTIONS="$JDK_JAVA_OPTIONS --add-opens=java.base/java.io=ALL-UNNAMED"
+JDK_JAVA_OPTIONS="$JDK_JAVA_OPTIONS --add-opens=java.base/java.util=ALL-UNNAMED"
 JDK_JAVA_OPTIONS="$JDK_JAVA_OPTIONS --add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED"
 export JDK_JAVA_OPTIONS
 
diff --git a/build.xml b/build.xml
index 313d625..12ab79c 100644
--- a/build.xml
+++ b/build.xml
@@ -215,6 +215,10 @@
              property="java9.test.option.3"
              value="--add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED"/>
   <property name="java9.test.option.3" value="-Dtest.3=3"/>
+  <available classname="java.lang.reflect.InaccessibleObjectException"
+             property="java9.test.option.4"
+             value="--add-opens=java.base/java.util=ALL-UNNAMED"/>
+  <property name="java9.test.option.4" value="-Dtest.4=4"/>
 
   <!-- Classpaths -->
   <path id="compile.classpath">
@@ -1531,6 +1535,7 @@
         <jvmarg value="${java9.test.option.1}"/>
         <jvmarg value="${java9.test.option.2}"/>
         <jvmarg value="${java9.test.option.3}"/>
+        <jvmarg value="${java9.test.option.4}"/>
 
         <classpath refid="tomcat.test.run.classpath" />
 


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[tomcat] 01/02: Checkstyle

Posted by re...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

remm pushed a commit to branch 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit 7bc3d28de5e539dc7b07d524e04ea2cfc91a30c7
Author: remm <re...@apache.org>
AuthorDate: Tue Dec 15 11:08:36 2020 +0100

    Checkstyle
---
 CONTRIBUTING.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index fdb648b..83968b2 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -31,7 +31,7 @@ you.
 
 ### Reporting Translation improvements
 
-Apache Tomcat project uses POEditor for managing the localization files. 
+Apache Tomcat project uses POEditor for managing the localization files.
 Please see more at https://cwiki.apache.org/confluence/x/vIPzBQ
 
 ### Your First Code Contribution


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org