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:17:31 UTC

[tomcat] branch 7.0.x updated (0a73005 -> acfeffc)

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

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


    from 0a73005  Add a line about POEditor and a link to the WIKI page
     new c0594c9  Checkstyle
     new acfeffc  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] 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 7.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit c0594c9af4811ef91ae407566ee0293df85d5e0a
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


[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 7.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit acfeffcc0e9856d53deee1537dc5a558f82b91f4
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 a215268..d369763 100755
--- a/bin/catalina.bat
+++ b/bin/catalina.bat
@@ -235,6 +235,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 2a0f28e..f6c42ba 100755
--- a/bin/catalina.sh
+++ b/bin/catalina.sh
@@ -322,6 +322,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 3f39eae..f8eb3d7 100644
--- a/build.xml
+++ b/build.xml
@@ -220,6 +220,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">
@@ -1537,6 +1541,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