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 2020/10/12 13:20:23 UTC

[syncope] branch master updated (0743b60 -> 96ea7ef)

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 0743b60  Fixing XML (de)serilization after Jackson upgrade
     new 8b1019c  Upgrading gmavenplus-plugin and Payara
     new 96ea7ef  Enabling JDK 16ea on Travis CI

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:
 .travis.yml | 11 +++++------
 pom.xml     |  4 ++--
 2 files changed, 7 insertions(+), 8 deletions(-)


[syncope] 01/02: Upgrading gmavenplus-plugin and Payara

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 8b1019c5d3333e582e22f8bd645cf6d38956fa8c
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Mon Oct 12 15:06:51 2020 +0200

    Upgrading gmavenplus-plugin and Payara
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index f88ad40..800e0a7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -510,7 +510,7 @@ under the License.
 
     <tomcat.version>9.0.39</tomcat.version>
     <wildfly.version>20.0.1.Final</wildfly.version>
-    <payara.version>5.2020.4</payara.version>
+    <payara.version>5.2020.5</payara.version>
     <javax.faces.version>2.3.14</javax.faces.version>
 
     <docker.postgresql.version>12</docker.postgresql.version>
@@ -2462,7 +2462,7 @@ under the License.
       <plugin>
         <groupId>org.codehaus.gmavenplus</groupId>
         <artifactId>gmavenplus-plugin</artifactId>
-        <version>1.10.1</version>
+        <version>1.11.0</version>
         <dependencies>
           <dependency>
             <groupId>org.codehaus.groovy</groupId>


[syncope] 02/02: Enabling JDK 16ea on Travis CI

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 96ea7ef1eb83b945e9d60b6b3d0d99ae881cc7ae
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Mon Oct 12 15:20:07 2020 +0200

    Enabling JDK 16ea on Travis CI
---
 .travis.yml | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index ca49848..a6f3aff 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -29,7 +29,6 @@ git:
 env:
   global:
   - MAVEN_OPTS="-Xmx4096M -Xss128M -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -noverify"
-  - JAVAEE_CONTAINER=Tomcat
   - DBMS=H2
   - jaxrsContentType=application/json
   - TestCommand="mvn -U -T 1C clean test -Dinvoker.streamLogs=true -Dmodernizer.skip=true -Dianal.skip=true -Drat.skip=true -Dcheckstyle.skip=true -Dsass.skip=true"
@@ -60,17 +59,17 @@ jobs:
     - stage: test
       name: "Unit Tests via JDK 14"
       script: 
-      - ~/install-jdk.sh --target "/home/travis/openjdk14" --workspace "/home/travis/.cache/install-jdk" --feature "14" --license "GPL" --cacerts
+      - ~/install-jdk.sh --target "/home/travis/openjdk14" --workspace "/home/travis/.cache/install-jdk" --feature "14" --license "GPLv2+CE" --cacerts
       - export JAVA_HOME=~/openjdk14
       - export PATH="$JAVA_HOME/bin:$PATH"
       - eval $TestCommand
     - stage: test
-      name: "Unit Tests via JDK 15"
+      name: "Unit Tests via JDK 16"
       script: 
-      - ~/install-jdk.sh --target "/home/travis/openjdk15" --workspace "/home/travis/.cache/install-jdk" --feature "15" --license "GPL" --cacerts
-      - export JAVA_HOME=~/openjdk15
+      - ~/install-jdk.sh --target "/home/travis/openjdk16" --workspace "/home/travis/.cache/install-jdk" --feature "16" --license "GPLv2+CE" --cacerts
+      - export JAVA_HOME=~/openjdk16
       - export PATH="$JAVA_HOME/bin:$PATH"
-      - eval $TestCommand
+      - mvn clean test -Dinvoker.streamLogs=true -Dmodernizer.skip=true -Dianal.skip=true -Drat.skip=true -Dcheckstyle.skip=true -Dsass.skip=true -DargLine="-Dnet.bytebuddy.experimental=true"
     - stage: test
       name: "Persistence Unit Tests via JDK 11: PostgreSQL (JSONB)"
       script: mvn -f core/persistence-jpa-json/pom.xml -P postgres -Dinvoker.streamLogs=true -Dmodernizer.skip=true -Dianal.skip=true -Drat.skip=true -Dcheckstyle.skip=true -Dsass.skip=true