You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2021/12/27 07:13:16 UTC

[syncope] branch master updated (10e7456 -> ac4d337)

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

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


    from 10e7456  Upgrading Swagger Core
     new a1231ec  Upgrading cargo-maven3-plugin
     new 6519909  Upgrading Groovy and maven-site-plugin
     new ac4d337  Replacing deprecated AdoptOpenJDK images with Eclipse Temurin

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:
 docker/console/src/main/resources/Dockerfile | 2 +-
 docker/core/src/main/resources/Dockerfile    | 2 +-
 docker/enduser/src/main/resources/Dockerfile | 2 +-
 docker/sra/src/main/resources/Dockerfile     | 2 +-
 docker/wa/src/main/resources/Dockerfile      | 2 +-
 pom.xml                                      | 6 +++---
 6 files changed, 8 insertions(+), 8 deletions(-)

[syncope] 03/03: Replacing deprecated AdoptOpenJDK images with Eclipse Temurin

Posted by il...@apache.org.
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

commit ac4d33733944b04d11b7d126e5f85ced4f2faad5
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Mon Dec 27 08:13:01 2021 +0100

    Replacing deprecated AdoptOpenJDK images with Eclipse Temurin
---
 docker/console/src/main/resources/Dockerfile | 2 +-
 docker/core/src/main/resources/Dockerfile    | 2 +-
 docker/enduser/src/main/resources/Dockerfile | 2 +-
 docker/sra/src/main/resources/Dockerfile     | 2 +-
 docker/wa/src/main/resources/Dockerfile      | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/docker/console/src/main/resources/Dockerfile b/docker/console/src/main/resources/Dockerfile
index 34ff78d..28efae5 100644
--- a/docker/console/src/main/resources/Dockerfile
+++ b/docker/console/src/main/resources/Dockerfile
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-FROM adoptopenjdk/openjdk11:debian-slim
+FROM eclipse-temurin:11-focal
 MAINTAINER dev@syncope.apache.org
 
 RUN set -x
diff --git a/docker/core/src/main/resources/Dockerfile b/docker/core/src/main/resources/Dockerfile
index 814fb48..81d885a 100644
--- a/docker/core/src/main/resources/Dockerfile
+++ b/docker/core/src/main/resources/Dockerfile
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-FROM adoptopenjdk/openjdk11:debian-slim
+FROM eclipse-temurin:11-focal
 MAINTAINER dev@syncope.apache.org
 
 RUN set -x
diff --git a/docker/enduser/src/main/resources/Dockerfile b/docker/enduser/src/main/resources/Dockerfile
index 3167a31..0f9b1ab 100644
--- a/docker/enduser/src/main/resources/Dockerfile
+++ b/docker/enduser/src/main/resources/Dockerfile
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-FROM adoptopenjdk/openjdk11:debian-slim
+FROM eclipse-temurin:11-focal
 MAINTAINER dev@syncope.apache.org
 
 RUN set -x
diff --git a/docker/sra/src/main/resources/Dockerfile b/docker/sra/src/main/resources/Dockerfile
index 6be642a..dbbcbe6 100644
--- a/docker/sra/src/main/resources/Dockerfile
+++ b/docker/sra/src/main/resources/Dockerfile
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-FROM adoptopenjdk/openjdk11:debian-slim
+FROM eclipse-temurin:11-focal
 MAINTAINER dev@syncope.apache.org
 
 RUN set -x
diff --git a/docker/wa/src/main/resources/Dockerfile b/docker/wa/src/main/resources/Dockerfile
index d4abf44..07444af 100644
--- a/docker/wa/src/main/resources/Dockerfile
+++ b/docker/wa/src/main/resources/Dockerfile
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-FROM adoptopenjdk/openjdk11:debian-slim
+FROM eclipse-temurin:11-focal
 MAINTAINER dev@syncope.apache.org
 
 RUN set -x

[syncope] 02/03: Upgrading Groovy and maven-site-plugin

Posted by il...@apache.org.
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

commit 6519909718f7c72581ffe28e7c39a7d1a9590c50
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Mon Dec 27 08:12:41 2021 +0100

    Upgrading Groovy and maven-site-plugin
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 19778e9..58b1e58 100644
--- a/pom.xml
+++ b/pom.xml
@@ -422,7 +422,7 @@ under the License.
 
     <cocoon.version>3.0.0-alpha-3</cocoon.version>
 
-    <groovy.version>4.0.0-rc-1</groovy.version>
+    <groovy.version>4.0.0-rc-2</groovy.version>
 
     <flowable.version>6.7.1</flowable.version>
 
@@ -2738,7 +2738,7 @@ under the License.
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-site-plugin</artifactId>
-            <version>3.9.1</version>
+            <version>3.10.0</version>
             <configuration>
               <locales>en</locales>
               <generateProjectInfo>false</generateProjectInfo>

[syncope] 01/03: Upgrading cargo-maven3-plugin

Posted by il...@apache.org.
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

commit a1231ec42fe122fa497d7e804edbcac1a630fa32
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Sun Dec 26 07:44:04 2021 +0100

    Upgrading cargo-maven3-plugin
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 3382e9c..19778e9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2152,7 +2152,7 @@ under the License.
         <plugin>
           <groupId>org.codehaus.cargo</groupId>
           <artifactId>cargo-maven3-plugin</artifactId>
-          <version>1.9.8</version>
+          <version>1.9.9</version>
           <configuration>
             <configuration>
               <type>standalone</type>