You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by mb...@apache.org on 2021/08/08 21:50:56 UTC

[roller] 19/19: Dependency updates, roller runs now on JDK 17 (and 11).

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

mbien pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/roller.git

commit 637cf3aa5b8c76f7a485151efa8bb4facecf9e5d
Author: Michael Bien <mb...@gmail.com>
AuthorDate: Sat Jul 10 11:12:25 2021 +0200

    Dependency updates, roller runs now on JDK 17 (and 11).
---
 app/pom.xml | 21 +++++++--------------
 pom.xml     | 11 +++++++++--
 2 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/app/pom.xml b/app/pom.xml
index 97603f1..9b77de2 100644
--- a/app/pom.xml
+++ b/app/pom.xml
@@ -40,22 +40,22 @@ limitations under the License.
         <jstl.version>1.2</jstl.version>
         <angular.version>1.7.8</angular.version>
         <ant.version>1.10.10</ant.version>
-        <asm.version>9.1</asm.version>
+        <asm.version>9.2</asm.version>
         <commons-validator.version>1.7</commons-validator.version>
         <commons-beanutils.version>1.9.4</commons-beanutils.version>
         <commons-codec.version>1.15</commons-codec.version>
-        <eclipse-link.version>2.7.8</eclipse-link.version>
+        <eclipse-link.version>2.7.9</eclipse-link.version>
         <guice.version>5.0.1</guice.version>
         <log4j2.version>2.14.1</log4j2.version>
-        <lucene.version>8.8.2</lucene.version>
+        <lucene.version>8.9.0</lucene.version>
         <oauth-core.version>20100527</oauth-core.version>
         <maven-war.version>3.2.3</maven-war.version>
         <maven-surefire.version>2.22.2</maven-surefire.version>
         <maven-antrun.version>1.0b3</maven-antrun.version>
-        <rome.version>1.15.0</rome.version>
-        <slf4j.version>1.7.30</slf4j.version>
+        <rome.version>1.16.0</rome.version>
+        <slf4j.version>1.7.31</slf4j.version>
         <spring.version>5.3.8</spring.version>
-        <spring.security.version>5.4.6</spring.security.version>
+        <spring.security.version>5.5.1</spring.security.version>
         <struts.version>2.5.26</struts.version>
         <velocity.version>2.3</velocity.version>
         <webjars.version>1.5</webjars.version>
@@ -428,14 +428,6 @@ limitations under the License.
             <groupId>org.springframework.security</groupId>
             <artifactId>spring-security-config</artifactId>
             <version>${spring.security.version}</version>
-            <exclusions>
-                <!-- all classes of spring-security-crypto-x.x.x.jar are already in 
-                                    spring-security-core-x.x.x.jar -->
-                <exclusion>
-                    <groupId>org.springframework.security</groupId>
-                    <artifactId>spring-security-crypto</artifactId>
-                </exclusion>
-            </exclusions>
         </dependency>
 
         <dependency>
@@ -744,6 +736,7 @@ limitations under the License.
                             <value>${basedir}/target</value>
                         </property>
                     </systemProperties>
+                    <trimStackTrace>false</trimStackTrace>
                 </configuration>
             </plugin>
 
diff --git a/pom.xml b/pom.xml
index 7cf3922..942794d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -44,7 +44,7 @@ limitations under the License.
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
         <derby.version>10.11.1.1</derby.version>
         <jaxb.version>2.3.1</jaxb.version>
-        <jetty.version>10.0.3</jetty.version>
+        <jetty.version>10.0.5</jetty.version>
         <roller.version>6.1.0-SNAPSHOT</roller.version>
     </properties>
 
@@ -63,7 +63,14 @@ limitations under the License.
                     <configuration>
                         <release>11</release>
                         <fork>true</fork>
-                        <compilerArgument>-Xlint:deprecation</compilerArgument>
+                        <compilerArgs>
+                            <arg>-Xlint:all</arg>
+                            <!--
+                            <arg>-Xlint:unchecked,rawtypes,cast,overrides,overloads,dep-ann,removal,synchronization,try,finally,varargs,processing</arg>
+                            <arg>-Xmaxwarns</arg>
+                            <arg>1000</arg>
+                            -->
+                        </compilerArgs>
                         <encoding>${project.build.sourceEncoding}</encoding>
                     </configuration>
                 </plugin>