[ofbiz-framework] branch trunk updated (1a8860a -> bc52fc3)

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

[ofbiz-framework] branch trunk updated (1a8860a -> bc52fc3)

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

mthl pushed a change to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git.


    from 1a8860a  Improved: Do not exclude files from component ‘config’ directories (OFBIZ-11161)
     new 949c42e  Improved: Reference the Servlet javadoc from Apache Tomcat (OFBIZ-11300)
     new d78a096  Improved: Remove unnecessary explicit Tomcat dependencies (OFBIZ-11300)
     new bc52fc3  Improved: Upgrade Tomcat 9.0.27 → 9.0.29 (OFBIZ-11300)

The 3 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:
 build.gradle | 13 ++++---------
 1 file changed, 4 insertions(+), 9 deletions(-)

Reply | Threaded
Open this post in threaded view
|

[ofbiz-framework] 01/03: Improved: Reference the Servlet javadoc from Apache Tomcat (OFBIZ-11300)

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

mthl pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git

commit 949c42e2818fca3ba46cdcb084f46b938409f118
Author: Mathieu Lirzin <[hidden email]>
AuthorDate: Wed Nov 27 15:58:46 2019 +0100

    Improved: Reference the Servlet javadoc from Apache Tomcat (OFBIZ-11300)
   
    Since we are using the servlet API implemented by Apache Tomcat, it is
    better to use its documentation than the one from oracle which is not
    updated anymore because of Java EE community adoption.
---
 build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.gradle b/build.gradle
index bfb9083..da4e02e 100644
--- a/build.gradle
+++ b/build.gradle
@@ -98,7 +98,7 @@ javadoc {
         // versions declared in the 'dependencies' block.
         links(
             'https://docs.oracle.com/javase/8/docs/api',
-            'https://docs.oracle.com/javaee/7/api',
+            'https://tomcat.apache.org/tomcat-9.0-doc/servletapi/',
             'http://docs.groovy-lang.org/docs/groovy-2.5.8/html/api',
             'https://commons.apache.org/proper/commons-cli/apidocs'
         )
@@ -189,7 +189,7 @@ dependencies {
     implementation 'org.apache.sshd:sshd-core:1.7.0'
     implementation 'org.apache.tika:tika-core:1.22'
     implementation 'org.apache.tika:tika-parsers:1.22'
-    implementation 'org.apache.tomcat:tomcat-catalina-ha:9.0.27'
+    implementation 'org.apache.tomcat:tomcat-catalina-ha:9.0.27' // Remember to change the version number in javadoc.options block
     implementation 'org.apache.tomcat:tomcat-catalina:9.0.27'
     implementation 'org.apache.tomcat:tomcat-jasper:9.0.27'
     implementation 'org.apache.tomcat:tomcat-tribes:9.0.27'

Reply | Threaded
Open this post in threaded view
|

[ofbiz-framework] 02/03: Improved: Remove unnecessary explicit Tomcat dependencies (OFBIZ-11300)

mthl
In reply to this post by mthl
This is an automated email from the ASF dual-hosted git repository.

mthl pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git

commit d78a0963b579d7e5d6866682f9568c41ffcd0c9f
Author: Mathieu Lirzin <[hidden email]>
AuthorDate: Wed Nov 27 16:28:57 2019 +0100

    Improved: Remove unnecessary explicit Tomcat dependencies (OFBIZ-11300)
   
    Tomcat already provides the Servlet and JSP Java EE related interfaces
    so there is no need to explicitly add the ‘javax...’ dependencies.
   
    Additionally ‘tomcat-catalina-ha’ depends on ‘tomcat-catalina’ and
    ‘tomcat-tribes’ so we can make those dependencies implicit.
   
    ‘axis2-kernel’ is now placed after ‘tomcat-qa’ in the dependencies
    block to ensure that we use the Servlet interfaces provided by Tomcat.
---
 build.gradle | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/build.gradle b/build.gradle
index da4e02e..cb9356b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -170,12 +170,8 @@ dependencies {
     implementation 'commons-net:commons-net:3.6'
     implementation 'commons-validator:commons-validator:1.6'
     implementation 'de.odysseus.juel:juel-impl:2.2.7'
-    implementation 'javax.el:javax.el-api:3.0.1-b06'
-    implementation 'javax.servlet:javax.servlet-api:4.0.1'
-    implementation 'javax.servlet.jsp:javax.servlet.jsp-api:2.3.3'
     implementation 'net.fortuna.ical4j:ical4j:1.0-rc3-atlassian-11'
     implementation 'org.apache.ant:ant-junit:1.10.7'
-    implementation 'org.apache.axis2:axis2-kernel:1.7.9'
     implementation 'org.apache.commons:commons-collections4:4.4'
     implementation 'org.apache.commons:commons-csv:1.7'
     implementation 'org.apache.commons:commons-dbcp2:2.7.0'
@@ -190,9 +186,8 @@ dependencies {
     implementation 'org.apache.tika:tika-core:1.22'
     implementation 'org.apache.tika:tika-parsers:1.22'
     implementation 'org.apache.tomcat:tomcat-catalina-ha:9.0.27' // Remember to change the version number in javadoc.options block
-    implementation 'org.apache.tomcat:tomcat-catalina:9.0.27'
     implementation 'org.apache.tomcat:tomcat-jasper:9.0.27'
-    implementation 'org.apache.tomcat:tomcat-tribes:9.0.27'
+    implementation 'org.apache.axis2:axis2-kernel:1.7.9'
     implementation 'org.apache.xmlgraphics:fop:2.3'
     implementation 'org.apache.xmlrpc:xmlrpc-client:3.1.3'
     implementation 'org.apache.xmlrpc:xmlrpc-server:3.1.3'

Reply | Threaded
Open this post in threaded view
|

[ofbiz-framework] 03/03: Improved: Upgrade Tomcat 9.0.27 → 9.0.29 (OFBIZ-11300)

mthl
In reply to this post by mthl
This is an automated email from the ASF dual-hosted git repository.

mthl pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git

commit bc52fc3821ba5e332f1abdc67d84db31349c87e3
Author: Mathieu Lirzin <[hidden email]>
AuthorDate: Wed Nov 27 17:19:11 2019 +0100

    Improved: Upgrade Tomcat 9.0.27 → 9.0.29 (OFBIZ-11300)
---
 build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.gradle b/build.gradle
index cb9356b..91faf7d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -185,8 +185,8 @@ dependencies {
     implementation 'org.apache.sshd:sshd-core:1.7.0'
     implementation 'org.apache.tika:tika-core:1.22'
     implementation 'org.apache.tika:tika-parsers:1.22'
-    implementation 'org.apache.tomcat:tomcat-catalina-ha:9.0.27' // Remember to change the version number in javadoc.options block
-    implementation 'org.apache.tomcat:tomcat-jasper:9.0.27'
+    implementation 'org.apache.tomcat:tomcat-catalina-ha:9.0.29' // Remember to change the version number in javadoc.options block
+    implementation 'org.apache.tomcat:tomcat-jasper:9.0.29'
     implementation 'org.apache.axis2:axis2-kernel:1.7.9'
     implementation 'org.apache.xmlgraphics:fop:2.3'
     implementation 'org.apache.xmlrpc:xmlrpc-client:3.1.3'