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/11/18 15:16:36 UTC

[syncope] branch master updated (85dd744 -> 8e05016)

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 85dd744  Upgrading Spring Boot
     new d6537a2  Upgrading Payara
     new 8e05016  Upgrading Wildfly

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:
 fit/core-reference/pom.xml                                            | 4 ++--
 fit/core-reference/src/main/resources/core-wildfly.properties         | 2 +-
 pom.xml                                                               | 4 ++--
 src/main/asciidoc/getting-started/systemRequirements.adoc             | 2 +-
 .../systemadministration/javaeecontainer.adoc                         | 4 ++--
 5 files changed, 8 insertions(+), 8 deletions(-)

[syncope] 02/02: Upgrading Wildfly

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 8e05016bec7a2d2d51a74dd1b74bde29d7f3a801
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Thu Nov 18 16:16:22 2021 +0100

    Upgrading Wildfly
---
 fit/core-reference/pom.xml                                            | 4 ++--
 fit/core-reference/src/main/resources/core-wildfly.properties         | 2 +-
 pom.xml                                                               | 2 +-
 src/main/asciidoc/getting-started/systemRequirements.adoc             | 2 +-
 .../systemadministration/javaeecontainer.adoc                         | 4 ++--
 5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/fit/core-reference/pom.xml b/fit/core-reference/pom.xml
index 5249865..303f69c 100644
--- a/fit/core-reference/pom.xml
+++ b/fit/core-reference/pom.xml
@@ -1505,9 +1505,9 @@ under the License.
             <inherited>true</inherited>
             <configuration>
               <container>
-                <containerId>wildfly23x</containerId>
+                <containerId>wildfly25x</containerId>
                 <zipUrlInstaller>
-                  <url>https://download.jboss.org/wildfly/${wildfly.version}/wildfly-${wildfly.version}.zip</url>
+                  <url>https://github.com/wildfly/wildfly/releases/download/${wildfly.version}/wildfly-${wildfly.version}.zip</url>
                   <downloadDir>${settings.localRepository}/org/codehaus/cargo/cargo-container-archives</downloadDir>
                   <extractDir>${project.build.directory}/cargo/extract</extractDir>
                 </zipUrlInstaller>
diff --git a/fit/core-reference/src/main/resources/core-wildfly.properties b/fit/core-reference/src/main/resources/core-wildfly.properties
index 8c5d9c8..6ac6583 100644
--- a/fit/core-reference/src/main/resources/core-wildfly.properties
+++ b/fit/core-reference/src/main/resources/core-wildfly.properties
@@ -14,7 +14,7 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
-persistence.metaDataFactory=jpa(URLs=vfs:${project.build.directory}/cargo/configurations/wildfly23x/deployments/syncope.war/WEB-INF/lib/syncope-core-persistence-jpa-${syncope.version}.jar; vfs:${project.build.directory}/cargo/configurations/wildfly23x/deployments/syncope.war/WEB-INF/lib/syncope-core-self-keymaster-starter-${syncope.version}.jar, Resources=##orm##)
+persistence.metaDataFactory=jpa(URLs=vfs:${project.build.directory}/cargo/configurations/wildfly25x/deployments/syncope.war/WEB-INF/lib/syncope-core-persistence-jpa-${syncope.version}.jar; vfs:${project.build.directory}/cargo/configurations/wildfly25x/deployments/syncope.war/WEB-INF/lib/syncope-core-self-keymaster-starter-${syncope.version}.jar, Resources=##orm##)
 
 javadocPaths=/WEB-INF/lib/syncope-common-idrepo-rest-api-${syncope.version}-javadoc.jar,\
 /WEB-INF/lib/syncope-common-idm-rest-api-${syncope.version}-javadoc.jar
diff --git a/pom.xml b/pom.xml
index 668a25e..58c32e6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -505,7 +505,7 @@ under the License.
     <cargo.output>${log.directory}/cargo-output.log</cargo.output>
 
     <tomcat.version>9.0.55</tomcat.version>
-    <wildfly.version>24.0.0.Final</wildfly.version>
+    <wildfly.version>25.0.1.Final</wildfly.version>
     <payara.version>5.2021.9</payara.version>
     <javax.faces.version>2.3.14</javax.faces.version>
 
diff --git a/src/main/asciidoc/getting-started/systemRequirements.adoc b/src/main/asciidoc/getting-started/systemRequirements.adoc
index afda64b..40d40dc 100644
--- a/src/main/asciidoc/getting-started/systemRequirements.adoc
+++ b/src/main/asciidoc/getting-started/systemRequirements.adoc
@@ -38,7 +38,7 @@ Apache Syncope {docVersion} is verified with the following Java EE containers:
 
  . http://tomcat.apache.org/download-90.cgi[Apache Tomcat 9^]
  . http://www.payara.fish/[Payara Server 5^]
- . http://www.wildfly.org/[Wildfly 24^]
+ . http://www.wildfly.org/[Wildfly 25^]
 
 === Internal Storage
 
diff --git a/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/javaeecontainer.adoc b/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/javaeecontainer.adoc
index b3496b7..8f39b0d 100644
--- a/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/javaeecontainer.adoc
+++ b/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/javaeecontainer.adoc
@@ -39,7 +39,7 @@ for the Master domain.
 Each JavaEE Container provides its own way to accomplish this task:
   * https://tomcat.apache.org/tomcat-9.0-doc/jdbc-pool.html[Apache Tomcat 9^]
   * https://docs.payara.fish/community/docs/documentation/user-guides/connection-pools/connection-pools.html[Payara Server 5^]
-  * https://docs.wildfly.org/24/Admin_Guide.html#DataSource[Wildfly 24^]
+  * https://docs.wildfly.org/25/Admin_Guide.html#DataSource[Wildfly 25^]
 ****
 
 ===== Apache Tomcat 9
@@ -152,7 +152,7 @@ For better performance under GNU / Linux, do not forget to include
 among JVM options.
 ====
 
-===== Wildfly 24
+===== Wildfly 25
 
 Add
 

[syncope] 01/02: Upgrading 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 d6537a27380d21ff3c86def135aa6c36bf88cc96
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Thu Nov 18 15:34:56 2021 +0100

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

diff --git a/pom.xml b/pom.xml
index 1723b8f..668a25e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -506,7 +506,7 @@ under the License.
 
     <tomcat.version>9.0.55</tomcat.version>
     <wildfly.version>24.0.0.Final</wildfly.version>
-    <payara.version>5.2021.8</payara.version>
+    <payara.version>5.2021.9</payara.version>
     <javax.faces.version>2.3.14</javax.faces.version>
 
     <docker.postgresql.version>14</docker.postgresql.version>