[syncope] branch 2_1_X updated: Upgrading Swagger UI

2023-03-16 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 269037c118 Upgrading Swagger UI
269037c118 is described below

commit 269037c11809c6d7fabf6e1a1e528e73d0261abb
Author: Francesco Chicchiriccò 
AuthorDate: Thu Mar 16 08:27:34 2023 +0100

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

diff --git a/pom.xml b/pom.xml
index 1ece3e827b..e2008aa8e5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -461,7 +461,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-4.17.1
+4.18.1
 29.0-jre
 
 3.4.1



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2023-03-08 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new ec67326715 Upgrading Swagger UI
ec67326715 is described below

commit ec673267158f77566583430571e5b3a4d8e1b4ce
Author: Francesco Chicchiriccò 
AuthorDate: Tue Mar 7 08:06:04 2023 +0100

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

diff --git a/pom.xml b/pom.xml
index bf00e07fc6..f257f315db 100644
--- a/pom.xml
+++ b/pom.xml
@@ -461,7 +461,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-4.17.0
+4.17.1
 29.0-jre
 
 3.4.1



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2022-11-21 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new c74b49190d Upgrading Swagger UI
c74b49190d is described below

commit c74b49190dee956abf879a0c758f4a9f8b9a1395
Author: Francesco Chicchiriccò 
AuthorDate: Mon Nov 21 15:39:54 2022 +0100

Upgrading Swagger UI
---
 .../syncope/core/persistence/jpa/dao/JPAJobStatusDAO.java  |  1 -
 .../syncope/core/provisioning/java/job/JobStatusUpdater.java   | 10 +++---
 pom.xml|  2 +-
 3 files changed, 4 insertions(+), 9 deletions(-)

diff --git 
a/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/JPAJobStatusDAO.java
 
b/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/JPAJobStatusDAO.java
index ca6cab0527..b61a34a503 100644
--- 
a/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/JPAJobStatusDAO.java
+++ 
b/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/JPAJobStatusDAO.java
@@ -46,6 +46,5 @@ public class JPAJobStatusDAO extends AbstractDAO 
implements JobStatus
 if (jobStatus != null) {
 entityManager().remove(jobStatus);
 }
-
 }
 }
diff --git 
a/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/job/JobStatusUpdater.java
 
b/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/job/JobStatusUpdater.java
index 7bd15ef5ab..08aa34e814 100644
--- 
a/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/job/JobStatusUpdater.java
+++ 
b/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/job/JobStatusUpdater.java
@@ -29,6 +29,7 @@ import org.springframework.context.event.EventListener;
 import org.springframework.scheduling.annotation.Async;
 
 public class JobStatusUpdater {
+
 protected static final Logger LOG = 
LoggerFactory.getLogger(JobStatusUpdater.class);
 
 @Autowired
@@ -37,11 +38,6 @@ public class JobStatusUpdater {
 @Autowired
 protected EntityFactory entityFactory;
 
-public JobStatusUpdater(final JobStatusDAO jobStatusDAO, final 
EntityFactory entityFactory) {
-this.jobStatusDAO = jobStatusDAO;
-this.entityFactory = entityFactory;
-}
-
 /**
  * It's important to note that responding to job status updates
  * must be done in async mode, and via a separate special thread executor
@@ -56,10 +52,10 @@ public class JobStatusUpdater {
 @EventListener
 public void update(final JobStatusEvent event) {
 if (event.getJobStatus() == null) {
-LOG.debug("Deleting status for job {}", event.getJobRefDesc());
+LOG.debug("Deleting status for job '{}'", event.getJobRefDesc());
 jobStatusDAO.delete(event.getJobRefDesc());
 } else {
-LOG.debug("Updating job {} with status {}", event.getJobRefDesc(), 
event.getJobStatus());
+LOG.debug("Updating job '{}' with status '{}'", 
event.getJobRefDesc(), event.getJobStatus());
 JobStatus jobStatus = entityFactory.newEntity(JobStatus.class);
 jobStatus.setKey(event.getJobRefDesc());
 jobStatus.setStatus(event.getJobStatus());
diff --git a/pom.xml b/pom.xml
index 56a8fa34c2..3bf672e7f7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -461,7 +461,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-4.14.3
+4.15.5
 29.0-jre
 
 3.4.1



[syncope] branch 2_1_X updated: Upgrading Swagger UI and asciidoctorj-pdf

2022-08-22 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 6e808bbdf6 Upgrading Swagger UI and asciidoctorj-pdf
6e808bbdf6 is described below

commit 6e808bbdf64231a1cc6421c3f5f7efc9bfec3228
Author: Francesco Chicchiriccò 
AuthorDate: Mon Aug 22 08:24:35 2022 +0200

Upgrading Swagger UI and asciidoctorj-pdf
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 1ce3a85edb..8a76361ecd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -461,7 +461,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-4.13.2
+4.14.0
 29.0-jre
 
 3.4.1
@@ -2607,7 +2607,7 @@ under the License.
   
 org.asciidoctor
 asciidoctorj-pdf
-2.1.6
+2.3.0
   
 
 



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2022-04-06 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 63539b4ce2 Upgrading Swagger UI
63539b4ce2 is described below

commit 63539b4ce2578381286e1e288c6269f7061ac8ff
Author: Francesco Chicchiriccò 
AuthorDate: Wed Apr 6 09:11:12 2022 +0200

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

diff --git a/pom.xml b/pom.xml
index 10a0cfa345..b220e10292 100644
--- a/pom.xml
+++ b/pom.xml
@@ -459,7 +459,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-4.9.1
+4.10.3
 29.0-jre
 
 3.4.1



[syncope] branch 2_1_X updated: Upgrading Swagger UI, AspectJ, Jackson

2022-03-28 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new e30ecdc  Upgrading Swagger UI, AspectJ, Jackson
e30ecdc is described below

commit e30ecdc53fa722dabe4f44af43ce271374863ace
Author: Francesco Chicchiriccò 
AuthorDate: Fri Mar 25 08:01:03 2022 +0100

Upgrading Swagger UI, AspectJ, Jackson
---
 installer/src/main/resources/izpack/install.xml |  2 +-
 pom.xml | 10 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/installer/src/main/resources/izpack/install.xml 
b/installer/src/main/resources/izpack/install.xml
index 563a731..73a3aae 100644
--- a/installer/src/main/resources/izpack/install.xml
+++ b/installer/src/main/resources/izpack/install.xml
@@ -137,7 +137,7 @@ under the License.
   
   
   
-  
+  
   
   
   
diff --git a/pom.xml b/pom.xml
index 0aefd98..f4b504c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -407,7 +407,7 @@ under the License.
 
 3.3.13
 
-2.11.4
+2.12.6
 
 5.2.19.RELEASE
 5.2.13.RELEASE
@@ -459,7 +459,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-4.8.0
+4.9.1
 29.0-jre
 
 3.4.1
@@ -474,7 +474,7 @@ under the License.
 4.7.0
 font-awesome.min.css
 2.0.1
-10.1.2
+11.5.0
 5.62.2
 895a9512bb
 2.0.7
@@ -872,7 +872,7 @@ under the License.
   
 com.fasterxml.jackson.core
 jackson-databind
-${jackson.version}
+${jackson.version}.1
   
   
 com.fasterxml.jackson.core
@@ -1029,7 +1029,7 @@ under the License.
   
 org.aspectj
 aspectjweaver
-1.9.8
+1.9.9
   
 
   


[syncope] branch 2_1_X updated: Upgrading Swagger UI and maven-project-info-reports-plugin

2022-02-06 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new b5afafa  Upgrading Swagger UI and maven-project-info-reports-plugin
b5afafa is described below

commit b5afafa8dcba020c7fe98a230fa6c17a0ad582c4
Author: Francesco Chicchiriccò 
AuthorDate: Mon Feb 7 08:20:13 2022 +0100

Upgrading Swagger UI and maven-project-info-reports-plugin
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index a0ea2a1..d2d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -459,7 +459,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-4.4.1
+4.5.0
 29.0-jre
 
 3.4.1
@@ -2464,7 +2464,7 @@ under the License.
   
 org.apache.maven.plugins
 maven-project-info-reports-plugin
-3.1.2
+3.2.1
 
   false
   false


[syncope] branch 2_1_X updated: Upgrading Swagger UI

2021-08-04 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new e1a1877  Upgrading Swagger UI
e1a1877 is described below

commit e1a187786d08c3e787e0dbc624ec71b17bb2b922
Author: Francesco Chicchiriccò 
AuthorDate: Wed Aug 4 08:59:51 2021 +0200

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

diff --git a/pom.xml b/pom.xml
index 514c4974..87c67e6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -459,7 +459,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.51.1
+3.51.2
 29.0-jre
 
 3.4.1


[syncope] branch 2_1_X updated: Upgrading Swagger UI

2021-05-21 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 5b0fa40  Upgrading Swagger UI
5b0fa40 is described below

commit 5b0fa40cc8128fd4b49bcd5af957a70cd75f7f87
Author: Francesco Chicchiriccò 
AuthorDate: Fri May 21 14:57:04 2021 +0200

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

diff --git a/pom.xml b/pom.xml
index adfeed1..a14f4f0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -458,7 +458,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.48.0
+3.49.0
 29.0-jre
 
 3.4.1


[syncope] branch 2_1_X updated: Upgrading Swagger UI and maven-project-info-reports-plugin

2021-05-02 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new f73c9a6  Upgrading Swagger UI and maven-project-info-reports-plugin
f73c9a6 is described below

commit f73c9a6f435434b82b65998b65eb592a196a59f0
Author: Francesco Chicchiriccò 
AuthorDate: Mon May 3 06:41:31 2021 +0200

Upgrading Swagger UI and maven-project-info-reports-plugin
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 3227c26..0532a80 100644
--- a/pom.xml
+++ b/pom.xml
@@ -458,7 +458,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.47.1
+3.48.0
 29.0-jre
 
 3.4.1
@@ -2451,7 +2451,7 @@ under the License.
   
 org.apache.maven.plugins
 maven-project-info-reports-plugin
-3.1.0
+3.1.2
 
   false
   false


[syncope] branch 2_1_X updated: Upgrading Swagger UI

2021-04-20 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 3f69181  Upgrading Swagger UI
3f69181 is described below

commit 3f69181358c3e6e3420597fbb027cd2b7ff64c57
Author: Francesco Chicchiriccò 
AuthorDate: Tue Apr 20 15:19:31 2021 +0200

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

diff --git a/pom.xml b/pom.xml
index 56945a3..3c90e3b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -458,7 +458,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.46.0
+3.47.1
 29.0-jre
 
 3.4.1


[syncope] branch 2_1_X updated: Upgrading Swagger UI

2021-04-01 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 1884a4c  Upgrading Swagger UI
1884a4c is described below

commit 1884a4c2ab70e8c4dbe3e8e0dd6d19b2758edf22
Author: Francesco Chicchiriccò 
AuthorDate: Thu Apr 1 15:27:10 2021 +0200

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

diff --git a/pom.xml b/pom.xml
index e0288c5..3dad900 100644
--- a/pom.xml
+++ b/pom.xml
@@ -458,7 +458,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.45.0
+3.46.0
 29.0-jre
 
 3.4.1


[syncope] branch 2_1_X updated: Upgrading Swagger UI, ANTLR, Tomcat

2021-03-11 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new ccd0f34  Upgrading Swagger UI, ANTLR, Tomcat
ccd0f34 is described below

commit ccd0f34a192daf69410098560e5ae0d4da49804f
Author: Francesco Chicchiriccò 
AuthorDate: Fri Mar 12 07:52:17 2021 +0100

Upgrading Swagger UI, ANTLR, Tomcat
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 2034763..05151a8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -458,7 +458,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.44.0
+3.45.0
 29.0-jre
 
 3.4.1
@@ -506,7 +506,7 @@ under the License.
 1.2.0
 RELEASE122
 
-4.9.1
+4.9.2
 
 1.4.1
 
@@ -532,7 +532,7 @@ under the License.
 ${log.directory}/cargo.log
 ${log.directory}/cargo-output.log
 
-9.0.43
+9.0.44
 
 v8.11.4
 5.4.0



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2021-02-28 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 627e6aa  Upgrading Swagger UI
627e6aa is described below

commit 627e6aa5d25cf7561146f34295786949015984f2
Author: Francesco Chicchiriccò 
AuthorDate: Sun Feb 28 11:36:27 2021 +0100

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

diff --git a/pom.xml b/pom.xml
index 051e06c..7b86a2c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -458,7 +458,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.42.0
+3.44.0
 29.0-jre
 
 3.4.1



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2020-10-30 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 23464ae  Upgrading Swagger UI
23464ae is described below

commit 23464ae14e03b008c37d2eafdf44f07e2a8c1a87
Author: Francesco Chicchiriccò 
AuthorDate: Wed Oct 28 08:41:55 2020 +0100

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

diff --git a/pom.xml b/pom.xml
index 2213dd3..6eaef74 100644
--- a/pom.xml
+++ b/pom.xml
@@ -458,7 +458,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.35.2
+3.36.1
 29.0-jre
 
 3.4.1



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2020-08-04 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new b402c59  Upgrading Swagger UI
b402c59 is described below

commit b402c59b21098987c4b93fef6da9181d034e0f69
Author: Francesco Chicchiriccò 
AuthorDate: Tue Aug 4 16:23:10 2020 +0200

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

diff --git a/pom.xml b/pom.xml
index 58301c9..47839f3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -458,7 +458,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.30.0
+3.31.1
 29.0-jre
 
 3.4.1



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2020-07-02 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 91b91a7  Upgrading Swagger UI
91b91a7 is described below

commit 91b91a7a15af3bff697bce9de2547c801a1f8cb8
Author: Francesco Chicchiriccò 
AuthorDate: Thu Jul 2 08:54:55 2020 +0200

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

diff --git a/pom.xml b/pom.xml
index 3772073..4872752 100644
--- a/pom.xml
+++ b/pom.xml
@@ -458,7 +458,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.27.0
+3.28.0
 29.0-jre
 
 3.4.1



[syncope] branch 2_1_X updated: Upgrading Swagger UI and asciidoctor-maven-plugin

2020-06-22 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new b8a2782  Upgrading Swagger UI and asciidoctor-maven-plugin
b8a2782 is described below

commit b8a2782dad152af90bac5612f39bf2ab6819d820
Author: Francesco Chicchiriccò 
AuthorDate: Mon Jun 22 08:35:40 2020 +0200

Upgrading Swagger UI and asciidoctor-maven-plugin
---
 pom.xml   | 17 ++---
 src/main/asciidoc/getting-started/obtain.adoc |  6 +++---
 2 files changed, 13 insertions(+), 10 deletions(-)

diff --git a/pom.xml b/pom.xml
index 07ea91b..1c23603 100644
--- a/pom.xml
+++ b/pom.xml
@@ -458,7 +458,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.26.1
+3.27.0
 29.0-jre
 
 3.4.1
@@ -2557,7 +2557,7 @@ under the License.
   
 org.asciidoctor
 asciidoctor-maven-plugin
-1.6.0
+2.0.0
 
   
 org.asciidoctor
@@ -2567,7 +2567,6 @@ under the License.
 
 
   book
-  true
   highlightjs
   
 ${project.version}
@@ -2597,10 +2596,11 @@ under the License.
 
 
   
getting-started/getting-started.adoc
+  
${rootpom.basedir}/src/main/asciidoc/getting-started
   html
-  ./images
   
 Apache Syncope ${project.version} - Getting 
Started
+images
   
 
   
@@ -2612,11 +2612,12 @@ under the License.
 
 
   
getting-started/getting-started.adoc
+  
${rootpom.basedir}/src/main/asciidoc/getting-started
   pdf
-  ${basedir}/src/main/asciidoc/images
   
 ${basedir}/src/main/asciidoc
 syncope
+${basedir}/src/main/asciidoc/images
   
 
   
@@ -2628,10 +2629,11 @@ under the License.
 
 
   
reference-guide/reference-guide.adoc
+  
${rootpom.basedir}/src/main/asciidoc/reference-guide
   html
-  ./images
   
 Apache Syncope ${project.version} - Reference 
Guide
+images
   
 
   
@@ -2643,11 +2645,12 @@ under the License.
 
 
   
reference-guide/reference-guide.adoc
+  
${rootpom.basedir}/src/main/asciidoc/reference-guide
   pdf
-  ${basedir}/src/main/asciidoc/images
   
 ${basedir}/src/main/asciidoc
 syncope
+${basedir}/src/main/asciidoc/images
   
 
   
diff --git a/src/main/asciidoc/getting-started/obtain.adoc 
b/src/main/asciidoc/getting-started/obtain.adoc
index 014eb6c..c649df1 100644
--- a/src/main/asciidoc/getting-started/obtain.adoc
+++ b/src/main/asciidoc/getting-started/obtain.adoc
@@ -298,7 +298,7 @@ https://docs.docker.com/compose/[Docker Compose^] or 
https://kubernetes.io/[Kube
 
 = Core
 
-Apache Syncope Core, see <> for 
information.
+Apache Syncope Core, see <> for 
information.
 
 Port exposed: `8080`.
 
@@ -318,7 +318,7 @@ 
http://openjpa.apache.org/builds/3.0.0/apache-openjpa/docs/ref_guide_event.html[
 
 = Console
 
-Apache Syncope Admin UI, see <> 
for information.
+Apache Syncope Admin UI, see <> 
for information.
 
 Port exposed: `8080`.
 
@@ -330,7 +330,7 @@ Environment variables:
 
 = Enduser
 
-Apache Syncope Enduser UI, see <> 
for information.
+Apache Syncope Enduser UI, see <> 
for information.
 
 Port exposed: `8080`.
 



[syncope] branch 2_1_X updated: Upgrading Swagger UI and cargo-maven-plugin

2020-06-03 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 659d60b  Upgrading Swagger UI and cargo-maven-plugin
659d60b is described below

commit 659d60b95b2bbd90f2fd8246253269f8a69ad897
Author: Francesco Chicchiriccò 
AuthorDate: Wed Jun 3 09:26:59 2020 +0200

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

diff --git a/pom.xml b/pom.xml
index c937474..0ab179b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -460,7 +460,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.25.4
+3.25.5
 29.0-jre
 
 3.4.1
@@ -2017,7 +2017,7 @@ under the License.
 
   org.codehaus.cargo
   cargo-maven2-plugin
-  1.7.12
+  1.7.13
   
 
   tomcat9x



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2020-05-24 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 82eb5a4  Upgrading Swagger UI
82eb5a4 is described below

commit 82eb5a4cd42d9d668d6052a070e40389e0c8e31a
Author: Francesco Chicchiriccò 
AuthorDate: Mon May 25 07:42:02 2020 +0200

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

diff --git a/pom.xml b/pom.xml
index c6d1a72..6f5e338 100644
--- a/pom.xml
+++ b/pom.xml
@@ -460,7 +460,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.25.3
+3.25.4
 29.0-jre
 
 3.4.1



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2020-05-15 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 8fff095  Upgrading Swagger UI
8fff095 is described below

commit 8fff095c284f6c13945568e04fc5e41d71d47db1
Author: Francesco Chicchiriccò 
AuthorDate: Fri May 15 09:40:56 2020 +0200

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

diff --git a/pom.xml b/pom.xml
index 5bde9ef..0bf2363 100644
--- a/pom.xml
+++ b/pom.xml
@@ -460,7 +460,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.25.2
+3.25.3
 29.0-jre
 
 3.4.1



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2020-05-08 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 75f8f80  Upgrading Swagger UI
75f8f80 is described below

commit 75f8f80e925582c9a7587c21113bb29d87716c63
Author: Francesco Chicchiriccò 
AuthorDate: Fri May 8 08:45:59 2020 +0200

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

diff --git a/pom.xml b/pom.xml
index 0d05553..bd43e62 100644
--- a/pom.xml
+++ b/pom.xml
@@ -460,7 +460,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.25.1
+3.25.2
 29.0-jre
 
 3.4.1



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2019-11-18 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 907076c  Upgrading Swagger UI
907076c is described below

commit 907076c0a6ad2e4a6189d98f3848ea3c16c6b4c8
Author: Francesco Chicchiriccò 
AuthorDate: Tue Nov 19 08:03:48 2019 +0100

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

diff --git a/pom.xml b/pom.xml
index d33471a..61e5a51 100644
--- a/pom.xml
+++ b/pom.xml
@@ -454,7 +454,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.24.0
+3.24.3
 20.0
 
 3.3.1-1



[syncope] branch 2_1_X updated: Upgrading Swagger UI and modernizer-maven-plugin

2019-10-18 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 2440eb8  Upgrading Swagger UI and modernizer-maven-plugin
2440eb8 is described below

commit 2440eb8fc20f06b69e5f0049e72be4097ddd2681
Author: Francesco Chicchiriccò 
AuthorDate: Fri Oct 18 08:24:03 2019 +0200

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

diff --git a/pom.xml b/pom.xml
index 9f817ab..c83e4e2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -454,7 +454,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.10
-3.23.8
+3.24.0
 20.0
 
 3.3.1-1
@@ -2173,7 +2173,7 @@ under the License.
   
 org.gaul
 modernizer-maven-plugin
-1.9.0
+2.0.0
 
   ${targetJdk}
   



[syncope] branch 2_1_X updated: Upgrading Swagger UI, Wicket and modernizer-maven-plugin

2019-09-09 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 021b19f  Upgrading Swagger UI, Wicket and modernizer-maven-plugin
021b19f is described below

commit 021b19facfa65c730714c887da235a747e7dd83c
Author: Francesco Chicchiriccò 
AuthorDate: Mon Sep 9 09:57:06 2019 +0200

Upgrading Swagger UI, Wicket and modernizer-maven-plugin
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index deb8463..cc339e8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -444,7 +444,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.9
-3.23.5
+3.23.8
 20.0
 
 3.3.1-1
@@ -465,7 +465,7 @@ under the License.
 2.0.7
 1.0.2
 
-8.5.0
+8.6.0
 8.3.0
 2.0.10
 
@@ -2141,7 +2141,7 @@ under the License.
   
 org.gaul
 modernizer-maven-plugin
-1.8.0
+1.9.0
 
   ${targetJdk}
   



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2019-08-13 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 0afa4f0  Upgrading Swagger UI
0afa4f0 is described below

commit 0afa4f0ef544baffb2fb80bec5778d73db2b129a
Author: Francesco Chicchiriccò 
AuthorDate: Wed Aug 14 07:36:10 2019 +0200

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

diff --git a/pom.xml b/pom.xml
index 8495c44..87eb8fd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -444,7 +444,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.8
-3.23.4
+3.23.5
 20.0
 
 3.3.1-1



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2019-05-28 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 7f772ad  Upgrading Swagger UI
7f772ad is described below

commit 7f772ad728e707f62b0a0568b93ba267def74fd0
Author: Francesco Chicchiriccò 
AuthorDate: Tue May 28 08:05:25 2019 +0200

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

diff --git a/pom.xml b/pom.xml
index db9cc5d..f723a55 100644
--- a/pom.xml
+++ b/pom.xml
@@ -444,7 +444,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.8
-3.22.1
+3.22.2
 20.0
 
 3.3.1-1



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2019-05-14 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 0dee807  Upgrading Swagger UI
0dee807 is described below

commit 0dee807390315ad52cf793b43da6a39bfe56b824
Author: Francesco Chicchiriccò 
AuthorDate: Tue May 14 08:13:59 2019 +0200

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

diff --git a/pom.xml b/pom.xml
index 28b314a..68d25c6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -444,7 +444,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.8
-3.22.0
+3.22.1
 20.0
 
 3.3.1-1



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2019-01-16 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 8b570a9  Upgrading Swagger UI
8b570a9 is described below

commit 8b570a9c5d5dba636b27115b42136f27bd1bfc62
Author: Francesco Chicchiriccò 
AuthorDate: Wed Jan 16 17:09:08 2019 +0100

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

diff --git a/pom.xml b/pom.xml
index 93dcbc5..781fc9f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -441,7 +441,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.6
-3.20.3
+3.20.5
 20.0
 
 3.3.1-1



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2018-12-18 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 51714b2  Upgrading Swagger UI
51714b2 is described below

commit 51714b25d2dbd8fed4908148e5d7cc5106a97e76
Author: Francesco Chicchiriccò 
AuthorDate: Tue Dec 18 14:44:45 2018 +0100

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

diff --git a/pom.xml b/pom.xml
index 7df5e8e..ad0483b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -441,7 +441,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.6
-3.20.2
+3.20.3
 20.0
 
 3.3.1-1



[syncope] branch 2_1_X updated: Upgrading Swagger UI

2018-11-06 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2_1_X by this push:
 new 6fcd414  Upgrading Swagger UI
6fcd414 is described below

commit 6fcd4143cd7563143cb0db0a09cd72e69fd30800
Author: Francesco Chicchiriccò 
AuthorDate: Wed Nov 7 08:09:49 2018 +0100

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

diff --git a/pom.xml b/pom.xml
index c0e0687..0d62cc6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -441,7 +441,7 @@ under the License.
 ${project.build.directory}/log
 
 2.0.5
-3.19.4
+3.19.5
 20.0
 
 3.3.1-1