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

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


The following commit(s) were added to refs/heads/master by this push:
     new dad67a4  Upgrading Spring Cloud Gateway, Elasticsearch, Mockito, 
Swagger UI and Checkstyle
dad67a4 is described below

commit dad67a43435544f568e5ce6fb335299ddfa63a66
Author: Francesco Chicchiriccò <[email protected]>
AuthorDate: Sat Sep 5 18:00:22 2020 +0200

    Upgrading Spring Cloud Gateway, Elasticsearch, Mockito, Swagger UI and 
Checkstyle
---
 fit/build-tools/pom.xml                                |  4 ++--
 fit/core-reference/pom.xml                             |  4 ++--
 pom.xml                                                | 18 +++++++++---------
 .../systemadministration/javaeecontainer.adoc          |  6 +++---
 4 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/fit/build-tools/pom.xml b/fit/build-tools/pom.xml
index b6aa430..4cb5c9d 100644
--- a/fit/build-tools/pom.xml
+++ b/fit/build-tools/pom.xml
@@ -81,8 +81,8 @@ under the License.
     </dependency>
 
     <dependency>
-      <groupId>javax.xml.ws</groupId>
-      <artifactId>jaxws-api</artifactId>
+      <groupId>jakarta.xml.ws</groupId>
+      <artifactId>jakarta.xml.ws-api</artifactId>
     </dependency>
     <dependency>
       <groupId>org.apache.cxf</groupId>
diff --git a/fit/core-reference/pom.xml b/fit/core-reference/pom.xml
index 95a6fef..bcfbe4b 100644
--- a/fit/core-reference/pom.xml
+++ b/fit/core-reference/pom.xml
@@ -1644,8 +1644,8 @@ under the License.
 
       <dependencies>
         <dependency>
-          <groupId>javax.xml.ws</groupId>
-          <artifactId>jaxws-api</artifactId>
+          <groupId>jakarta.xml.ws</groupId>
+          <artifactId>jakarta.xml.ws-api</artifactId>
         </dependency>
         <dependency>
           <groupId>org.apache.cxf</groupId>
diff --git a/pom.xml b/pom.xml
index b5e53b1..3c83232 100644
--- a/pom.xml
+++ b/pom.xml
@@ -412,7 +412,7 @@ under the License.
     <spring.version>5.2.8.RELEASE</spring.version>
     <spring-security.version>5.3.4.RELEASE</spring-security.version>
     <spring-boot.version>2.3.3.RELEASE</spring-boot.version>
-    <spring-cloud-gateway.version>2.2.4.RELEASE</spring-cloud-gateway.version>
+    <spring-cloud-gateway.version>2.2.5.RELEASE</spring-cloud-gateway.version>
 
     <openjpa.version>3.1.2</openjpa.version>
     <hikaricp.version>3.4.5</hikaricp.version>
@@ -428,11 +428,11 @@ under the License.
 
     <flowable.version>6.5.0</flowable.version>
 
-    <camel.version>3.4.3</camel.version>
+    <camel.version>3.5.0</camel.version>
 
     <slf4j.version>2.0.0-alpha1</slf4j.version>
 
-    <elasticsearch.version>7.9.0</elasticsearch.version>
+    <elasticsearch.version>7.9.1</elasticsearch.version>
 
     <apacheds.version>2.0.0.AM26</apacheds.version>
     <apachedirapi.version>2.0.0</apachedirapi.version>
@@ -455,10 +455,10 @@ under the License.
     <h2.version>1.4.200</h2.version>
 
     <junit.version>5.6.2</junit.version>
-    <mockito.version>3.5.7</mockito.version>
+    <mockito.version>3.5.10</mockito.version>
 
     <swagger-core.version>2.1.4</swagger-core.version>
-    <swagger-ui.version>3.32.3</swagger-ui.version>
+    <swagger-ui.version>3.32.5</swagger-ui.version>
 
     <jquery-slimscroll.version>1.3.8</jquery-slimscroll.version>
     <jquery-cookie.version>1.4.1-1</jquery-cookie.version>
@@ -466,7 +466,6 @@ under the License.
     <bootbox.version>5.4.0</bootbox.version>
     <font-awesome.version>5.14.0</font-awesome.version>
     <ionicons.version>2.0.1</ionicons.version>
-    <highlightjs.version>9.15.10</highlightjs.version>
     <codemirror.version>5.50.0</codemirror.version>
     <googlediffmatchpath.version>895a9512bb</googlediffmatchpath.version>
     <jsplumb.version>2.0.7</jsplumb.version>
@@ -1968,7 +1967,8 @@ under the License.
       <dependency>
         <groupId>org.springframework.cloud</groupId>
         <artifactId>spring-cloud-contract-wiremock</artifactId>
-        <version>${spring-cloud-gateway.version}</version>
+        <!-- TMP: revert to ${spring-cloud-gateway.version} as soon as 
available -->
+        <version>2.2.4.RELEASE</version>
         <scope>test</scope>
       </dependency>
       <dependency>
@@ -2284,7 +2284,7 @@ under the License.
             <dependency>
               <groupId>com.puppycrawl.tools</groupId>
               <artifactId>checkstyle</artifactId>
-              <version>8.35</version>
+              <version>8.36</version>
             </dependency>
           </dependencies>
           <configuration>
@@ -2606,7 +2606,7 @@ under the License.
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-project-info-reports-plugin</artifactId>
-        <version>3.0.0</version>
+        <version>3.1.1</version>
         <configuration>
           <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
           <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
diff --git 
a/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/javaeecontainer.adoc
 
b/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/javaeecontainer.adoc
index 6031fe5..931197d 100644
--- 
a/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/javaeecontainer.adoc
+++ 
b/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/javaeecontainer.adoc
@@ -159,9 +159,9 @@ Add
 [source,xml]
 ....
     <dependency>
-      <groupId>javax.xml.ws</groupId>
-      <artifactId>jaxws-api</artifactId>
-      <version>2.2.11</version>
+      <groupId>jakarta.xml.ws</groupId>
+      <artifactId>jakarta.xml.ws-api</artifactId>
+      <version>2.3.3</version>
     </dependency>
     <dependency>
       <groupId>org.apache.cxf</groupId>

Reply via email to