[4/6] syncope git commit: Parachute for builds not from GIT repo

2017-09-06 Thread ilgrosso
Parachute for builds not from GIT repo


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/cb6f0cfb
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/cb6f0cfb
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/cb6f0cfb

Branch: refs/heads/master
Commit: cb6f0cfbef6144bf091d0a9c05e03b9680c260d9
Parents: 00ef003
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 17:50:25 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 17:50:35 2017 +0200

--
 .../java/org/apache/syncope/client/console/pages/BasePage.java | 6 --
 pom.xml| 3 +++
 2 files changed, 7 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/cb6f0cfb/client/console/src/main/java/org/apache/syncope/client/console/pages/BasePage.java
--
diff --git 
a/client/console/src/main/java/org/apache/syncope/client/console/pages/BasePage.java
 
b/client/console/src/main/java/org/apache/syncope/client/console/pages/BasePage.java
index e7ec23c..fad2ac1 100644
--- 
a/client/console/src/main/java/org/apache/syncope/client/console/pages/BasePage.java
+++ 
b/client/console/src/main/java/org/apache/syncope/client/console/pages/BasePage.java
@@ -107,8 +107,10 @@ public class BasePage extends WebPage implements 
IAjaxIndicatorAware {
 // right sidebar
 PlatformInfo platformInfo = 
SyncopeConsoleSession.get().getPlatformInfo();
 Label version = new Label("version", platformInfo.getVersion());
-String versionLink = platformInfo.getVersion().endsWith("-SNAPSHOT")
-? 
"https://git-wip-us.apache.org/repos/asf?p=syncope.git;a=commit;h=; + 
platformInfo.getBuildNumber()
+String versionLink = 
StringUtils.isNotBlank(platformInfo.getBuildNumber())
+&& platformInfo.getVersion().endsWith("-SNAPSHOT")
+? 
"https://git-wip-us.apache.org/repos/asf?p=syncope.git;a=commit;h=;
++ platformInfo.getBuildNumber()
 : "https://cwiki.apache.org/confluence/display/SYNCOPE/Jazz;;
 version.add(new AttributeModifier("onclick", "window.open('" + 
versionLink + "', '_blank')"));
 body.add(version);

http://git-wip-us.apache.org/repos/asf/syncope/blob/cb6f0cfb/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 5167de0..180f066 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1983,6 +1983,9 @@ under the License.
 project.properties['licenseUrl'] = 
project.parent.licenses[0].url
 project.properties['site.deploymentBaseDir'] = 
 project.properties['site.deploymentBaseUrl'] == null || 
!project.properties['site.deploymentBaseUrl'].startsWith('file:') ? 
project.properties['project.build.directory'] + "/generated-docs" : 
project.properties['site.deploymentBaseUrl'].substring(7)
+
+if (!project.properties.containsKey('buildNumber'))
+  project.properties['buildNumber'] = ""
   
 
   



[5/6] syncope git commit: Safely remove unused API method

2017-09-06 Thread ilgrosso
Safely remove unused API method


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/299db471
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/299db471
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/299db471

Branch: refs/heads/master
Commit: 299db471b024ad54cadade8ce1db0a01b7d46dc3
Parents: cb6f0cf
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 14:29:42 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 17:50:39 2017 +0200

--
 .../syncope/core/persistence/api/dao/AnySearchDAO.java|  8 
 .../core/persistence/jpa/dao/AbstractAnySearchDAO.java| 10 --
 2 files changed, 18 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/299db471/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/AnySearchDAO.java
--
diff --git 
a/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/AnySearchDAO.java
 
b/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/AnySearchDAO.java
index fe5b572..18508ac 100644
--- 
a/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/AnySearchDAO.java
+++ 
b/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/AnySearchDAO.java
@@ -36,14 +36,6 @@ public interface AnySearchDAO extends DAO {
 int count(Set adminRealms, SearchCond searchCondition, AnyTypeKind 
kind);
 
 /**
- * @param realmFullPath for use with {@link 
org.apache.syncope.core.persistence.api.dao.search.AssignableCond}
- * @param kind any object
- * @param  any
- * @return the list of any objects matching the given search condition
- */
-> List searchAssignable(String realmFullPath, 
AnyTypeKind kind);
-
-/**
  * @param searchCondition the search condition
  * @param kind any object
  * @param  any

http://git-wip-us.apache.org/repos/asf/syncope/blob/299db471/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/AbstractAnySearchDAO.java
--
diff --git 
a/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/AbstractAnySearchDAO.java
 
b/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/AbstractAnySearchDAO.java
index f20a765..6faeeab 100644
--- 
a/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/AbstractAnySearchDAO.java
+++ 
b/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/AbstractAnySearchDAO.java
@@ -63,8 +63,6 @@ import 
org.apache.syncope.core.persistence.api.entity.anyobject.AnyObject;
 import org.apache.syncope.core.persistence.api.entity.group.Group;
 import org.apache.syncope.core.persistence.jpa.entity.JPAPlainSchema;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.transaction.annotation.Propagation;
-import org.springframework.transaction.annotation.Transactional;
 import org.springframework.util.ReflectionUtils;
 
 public abstract class AbstractAnySearchDAO extends AbstractDAO 
implements AnySearchDAO {
@@ -90,14 +88,6 @@ public abstract class AbstractAnySearchDAO extends 
AbstractDAO implement
 @Autowired
 protected AnyUtilsFactory anyUtilsFactory;
 
-@Transactional(propagation = Propagation.REQUIRES_NEW, readOnly = true)
-@Override
-public > List searchAssignable(final String 
realmFullPath, final AnyTypeKind kind) {
-AssignableCond assignableCond = new AssignableCond();
-assignableCond.setRealmFullPath(realmFullPath);
-return search(SearchCond.getLeafCond(assignableCond), kind);
-}
-
 protected SearchCond buildEffectiveCond(final SearchCond cond, final 
Set dynRealmKeys) {
 List effectiveConds = 
dynRealmKeys.stream().map(dynRealmKey -> {
 DynRealmCond dynRealmCond = new DynRealmCond();



[2/6] syncope git commit: Upgrading the ConnId AD connector

2017-09-06 Thread ilgrosso
Upgrading the ConnId AD connector


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/20a13df9
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/20a13df9
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/20a13df9

Branch: refs/heads/2_0_X
Commit: 20a13df94ff0ec8fc853d98f2477fa05375f27f9
Parents: dff8172
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 14:52:33 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 14:52:33 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/syncope/blob/20a13df9/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 038857b..c7adcc9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -362,7 +362,7 @@ under the License.
 2.2.4
 0.8.6
 1.5.2
-1.3.3
+1.3.4
 
 3.1.12
 



[1/6] syncope git commit: Safely remove unused API method

2017-09-06 Thread ilgrosso
Repository: syncope
Updated Branches:
  refs/heads/2_0_X cbd0ce518 -> 6cc2b2ccd
  refs/heads/master 00ef0032f -> ae34384fd


Safely remove unused API method


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/dff8172d
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/dff8172d
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/dff8172d

Branch: refs/heads/2_0_X
Commit: dff8172dcab4471fd944c32ab2ec75a26ec2fae8
Parents: cbd0ce5
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 14:29:42 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 14:29:42 2017 +0200

--
 .../syncope/core/persistence/api/dao/AnySearchDAO.java|  8 
 .../core/persistence/jpa/dao/AbstractAnySearchDAO.java| 10 --
 2 files changed, 18 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/dff8172d/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/AnySearchDAO.java
--
diff --git 
a/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/AnySearchDAO.java
 
b/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/AnySearchDAO.java
index fe5b572..18508ac 100644
--- 
a/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/AnySearchDAO.java
+++ 
b/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/AnySearchDAO.java
@@ -36,14 +36,6 @@ public interface AnySearchDAO extends DAO {
 int count(Set adminRealms, SearchCond searchCondition, AnyTypeKind 
kind);
 
 /**
- * @param realmFullPath for use with {@link 
org.apache.syncope.core.persistence.api.dao.search.AssignableCond}
- * @param kind any object
- * @param  any
- * @return the list of any objects matching the given search condition
- */
-> List searchAssignable(String realmFullPath, 
AnyTypeKind kind);
-
-/**
  * @param searchCondition the search condition
  * @param kind any object
  * @param  any

http://git-wip-us.apache.org/repos/asf/syncope/blob/dff8172d/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/AbstractAnySearchDAO.java
--
diff --git 
a/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/AbstractAnySearchDAO.java
 
b/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/AbstractAnySearchDAO.java
index c9daf03..f433429 100644
--- 
a/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/AbstractAnySearchDAO.java
+++ 
b/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/AbstractAnySearchDAO.java
@@ -64,8 +64,6 @@ import 
org.apache.syncope.core.persistence.api.entity.anyobject.AnyObject;
 import org.apache.syncope.core.persistence.api.entity.group.Group;
 import org.apache.syncope.core.persistence.jpa.entity.JPAPlainSchema;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.transaction.annotation.Propagation;
-import org.springframework.transaction.annotation.Transactional;
 import org.springframework.util.ReflectionUtils;
 
 public abstract class AbstractAnySearchDAO extends AbstractDAO 
implements AnySearchDAO {
@@ -91,14 +89,6 @@ public abstract class AbstractAnySearchDAO extends 
AbstractDAO implement
 @Autowired
 protected AnyUtilsFactory anyUtilsFactory;
 
-@Transactional(propagation = Propagation.REQUIRES_NEW, readOnly = true)
-@Override
-public > List searchAssignable(final String 
realmFullPath, final AnyTypeKind kind) {
-AssignableCond assignableCond = new AssignableCond();
-assignableCond.setRealmFullPath(realmFullPath);
-return search(SearchCond.getLeafCond(assignableCond), kind);
-}
-
 protected SearchCond buildEffectiveCond(final SearchCond cond, final 
Set dynRealmKeys) {
 List effectiveConds = 
CollectionUtils.collect(dynRealmKeys, new Transformer() {
 



[3/6] syncope git commit: Parachute for builds not from GIT repo

2017-09-06 Thread ilgrosso
Parachute for builds not from GIT repo


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/6cc2b2cc
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/6cc2b2cc
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/6cc2b2cc

Branch: refs/heads/2_0_X
Commit: 6cc2b2ccd15d3d4e14a0a8dd0a00b14f01a262ae
Parents: 20a13df
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 17:50:25 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 17:50:25 2017 +0200

--
 .../java/org/apache/syncope/client/console/pages/BasePage.java | 6 --
 pom.xml| 3 +++
 2 files changed, 7 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/6cc2b2cc/client/console/src/main/java/org/apache/syncope/client/console/pages/BasePage.java
--
diff --git 
a/client/console/src/main/java/org/apache/syncope/client/console/pages/BasePage.java
 
b/client/console/src/main/java/org/apache/syncope/client/console/pages/BasePage.java
index 815b29f..e8f1fb9 100644
--- 
a/client/console/src/main/java/org/apache/syncope/client/console/pages/BasePage.java
+++ 
b/client/console/src/main/java/org/apache/syncope/client/console/pages/BasePage.java
@@ -107,8 +107,10 @@ public class BasePage extends WebPage implements 
IAjaxIndicatorAware {
 // right sidebar
 PlatformInfo platformInfo = 
SyncopeConsoleSession.get().getPlatformInfo();
 Label version = new Label("version", platformInfo.getVersion());
-String versionLink = platformInfo.getVersion().endsWith("-SNAPSHOT")
-? 
"https://git-wip-us.apache.org/repos/asf?p=syncope.git;a=commit;h=; + 
platformInfo.getBuildNumber()
+String versionLink = 
StringUtils.isNotBlank(platformInfo.getBuildNumber())
+&& platformInfo.getVersion().endsWith("-SNAPSHOT")
+? 
"https://git-wip-us.apache.org/repos/asf?p=syncope.git;a=commit;h=;
++ platformInfo.getBuildNumber()
 : "https://cwiki.apache.org/confluence/display/SYNCOPE/Jazz;;
 version.add(new AttributeModifier("onclick", "window.open('" + 
versionLink + "', '_blank')"));
 body.add(version);

http://git-wip-us.apache.org/repos/asf/syncope/blob/6cc2b2cc/pom.xml
--
diff --git a/pom.xml b/pom.xml
index c7adcc9..b5d0876 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2070,6 +2070,9 @@ under the License.
 project.properties['licenseUrl'] = 
project.parent.licenses[0].url
 project.properties['site.deploymentBaseDir'] = 
 project.properties['site.deploymentBaseUrl'] == null || 
!project.properties['site.deploymentBaseUrl'].startsWith('file:') ? 
project.properties['project.build.directory'] + "/generated-docs" : 
project.properties['site.deploymentBaseUrl'].substring(7)
+
+if (!project.properties.containsKey('buildNumber'))
+  project.properties['buildNumber'] = ""
   
 
   



[6/6] syncope git commit: Upgrading the ConnId AD connector

2017-09-06 Thread ilgrosso
Upgrading the ConnId AD connector


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/ae34384f
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/ae34384f
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/ae34384f

Branch: refs/heads/master
Commit: ae34384fd8988897e9bf020a1d8fc9bd9dda4e2d
Parents: 299db47
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 14:52:33 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 17:50:43 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/syncope/blob/ae34384f/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 180f066..663c123 100644
--- a/pom.xml
+++ b/pom.xml
@@ -362,7 +362,7 @@ under the License.
 2.2.4
 0.8.6
 1.5.2
-1.3.3
+1.3.4
 
 3.2.0-SNAPSHOT
 



Syncope-2_0_X-deploy - Build # 599 - Fixed

2017-09-06 Thread Apache Jenkins Server
The Apache Jenkins build system has built Syncope-2_0_X-deploy (build #599)

Status: Fixed

Check console output at https://builds.apache.org/job/Syncope-2_0_X-deploy/599/ 
to view the results.

syncope git commit: Updating Eclipse files for next development iteration

2017-09-06 Thread ilgrosso
Repository: syncope
Updated Branches:
  refs/heads/2_0_X 9f53d0200 -> cbd0ce518


Updating Eclipse files for next development iteration


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/cbd0ce51
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/cbd0ce51
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/cbd0ce51

Branch: refs/heads/2_0_X
Commit: cbd0ce518072c95c9861e52c265cc6f64142ecbb
Parents: 9f53d02
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 11:34:42 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 11:34:42 2017 +0200

--
 .../org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF | 2 +-
 .../org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF  | 2 +-
 ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/pom.xml   | 2 +-
 .../releng/org.apache.syncope.ide.eclipse.site/category.xml| 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/cbd0ce51/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
--
diff --git 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
index 2c08a07..6c39cc3 100644
--- 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
+++ 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
 Bundle-Name: Apache Syncope Eclipse Plugin
 Bundle-SymbolicName: org.apache.syncope.ide.eclipse.plugin;singleton:=true
-Bundle-Version: 2.0.5
+Bundle-Version: 2.0.6.qualifier
 Bundle-Activator: org.apache.syncope.ide.eclipse.plugin.Activator
 Require-Bundle: org.eclipse.ui,
   org.eclipse.core.runtime,

http://git-wip-us.apache.org/repos/asf/syncope/blob/cbd0ce51/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
--
diff --git 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
index e441a19..c71210c 100644
--- 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
+++ 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
 Bundle-Name: org.apache.syncope.ide.eclipse.tests
 Bundle-SymbolicName: org.apache.syncope.ide.eclipse.tests;singleton:=true
-Bundle-Version: 2.0.5
+Bundle-Version: 2.0.6.qualifier
 Bundle-ActivationPolicy: lazy
 Bundle-Vendor: 
 Bundle-RequiredExecutionEnvironment: J2SE-1.5

http://git-wip-us.apache.org/repos/asf/syncope/blob/cbd0ce51/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/pom.xml
--
diff --git a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/pom.xml 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/pom.xml
index 2e5533b..abf3f2f 100644
--- a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/pom.xml
+++ b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/pom.xml
@@ -24,7 +24,7 @@ under the License.
   
 org.apache.syncope.ide
 syncope-ide-eclipse
-2.0.5-SNAPSHOT
+2.0.6-SNAPSHOT
 ../../
   
 

http://git-wip-us.apache.org/repos/asf/syncope/blob/cbd0ce51/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
--
diff --git 
a/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml 
b/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
index 5449072..a5a628e 100644
--- a/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
+++ b/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
@@ -18,7 +18,7 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-   
+   
   





Syncope-2_0_X-deploy - Build # 598 - Failure

2017-09-06 Thread Apache Jenkins Server
The Apache Jenkins build system has built Syncope-2_0_X-deploy (build #598)

Status: Failure

Check console output at https://builds.apache.org/job/Syncope-2_0_X-deploy/598/ 
to view the results.

[syncope] Git Push Summary

2017-09-06 Thread ilgrosso
Repository: syncope
Updated Tags:  refs/tags/syncope-2.0.5 [created] 12dd76b34


syncope git commit: [maven-release-plugin] prepare for next development iteration

2017-09-06 Thread ilgrosso
Repository: syncope
Updated Branches:
  refs/heads/2_0_X 4d88e9b51 -> 9f53d0200


[maven-release-plugin] prepare for next development iteration


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/9f53d020
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/9f53d020
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/9f53d020

Branch: refs/heads/2_0_X
Commit: 9f53d0200c74532ebb9c6957f2adcb460c171cb6
Parents: 4d88e9b
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 10:21:41 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 10:21:41 2017 +0200

--
 archetype/pom.xml| 2 +-
 client/cli/pom.xml   | 2 +-
 client/console/pom.xml   | 2 +-
 client/enduser/pom.xml   | 2 +-
 client/lib/pom.xml   | 2 +-
 client/pom.xml   | 2 +-
 common/lib/pom.xml   | 2 +-
 common/pom.xml   | 2 +-
 common/rest-api/pom.xml  | 2 +-
 core/logic/pom.xml   | 2 +-
 core/migration/pom.xml   | 2 +-
 core/persistence-api/pom.xml | 2 +-
 core/persistence-jpa/pom.xml | 2 +-
 core/pom.xml | 2 +-
 core/provisioning-api/pom.xml| 2 +-
 core/provisioning-java/pom.xml   | 2 +-
 core/rest-cxf/pom.xml| 2 +-
 core/spring/pom.xml  | 2 +-
 core/workflow-activiti/pom.xml   | 2 +-
 core/workflow-api/pom.xml| 2 +-
 core/workflow-flowable/pom.xml   | 2 +-
 core/workflow-java/pom.xml   | 2 +-
 deb/console/pom.xml  | 2 +-
 deb/core/pom.xml | 2 +-
 deb/enduser/pom.xml  | 2 +-
 deb/pom.xml  | 2 +-
 ext/camel/client-console/pom.xml | 2 +-
 ext/camel/common-lib/pom.xml | 2 +-
 ext/camel/logic/pom.xml  | 2 +-
 ext/camel/persistence-api/pom.xml| 2 +-
 ext/camel/persistence-jpa/pom.xml| 2 +-
 ext/camel/pom.xml| 2 +-
 ext/camel/provisioning-api/pom.xml   | 2 +-
 ext/camel/provisioning-camel/pom.xml | 2 +-
 ext/camel/rest-api/pom.xml   | 2 +-
 ext/camel/rest-cxf/pom.xml   | 2 +-
 ext/elasticsearch/client-elasticsearch/pom.xml   | 2 +-
 ext/elasticsearch/persistence-jpa/pom.xml| 2 +-
 ext/elasticsearch/pom.xml| 2 +-
 ext/elasticsearch/provisioning-java/pom.xml  | 2 +-
 ext/pom.xml  | 2 +-
 ext/saml2sp/agent/pom.xml| 2 +-
 ext/saml2sp/client-console/pom.xml   | 2 +-
 ext/saml2sp/client-enduser/pom.xml   | 2 +-
 ext/saml2sp/common-lib/pom.xml   | 2 +-
 ext/saml2sp/logic/pom.xml| 2 +-
 ext/saml2sp/persistence-api/pom.xml  | 2 +-
 ext/saml2sp/persistence-jpa/pom.xml  | 2 +-
 ext/saml2sp/pom.xml  | 2 +-
 ext/saml2sp/provisioning-api/pom.xml | 2 +-
 ext/saml2sp/provisioning-java/pom.xml| 2 +-
 ext/saml2sp/rest-api/pom.xml | 2 +-
 ext/saml2sp/rest-cxf/pom.xml | 2 +-
 ext/swagger-ui/pom.xml   | 2 +-
 fit/build-tools/pom.xml  | 2 +-
 fit/console-reference/pom.xml| 2 +-
 fit/core-reference/pom.xml   | 2 +-
 fit/enduser-reference/pom.xml| 2 

syncope git commit: [maven-release-plugin] prepare release syncope-2.0.5

2017-09-06 Thread ilgrosso
Repository: syncope
Updated Branches:
  refs/heads/2_0_X 6096e344d -> 4d88e9b51


[maven-release-plugin] prepare release syncope-2.0.5


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/4d88e9b5
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/4d88e9b5
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/4d88e9b5

Branch: refs/heads/2_0_X
Commit: 4d88e9b510014da81291d095830a5ddcae9108c4
Parents: 6096e34
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 10:21:21 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 10:21:21 2017 +0200

--
 archetype/pom.xml| 2 +-
 client/cli/pom.xml   | 2 +-
 client/console/pom.xml   | 2 +-
 client/enduser/pom.xml   | 2 +-
 client/lib/pom.xml   | 2 +-
 client/pom.xml   | 2 +-
 common/lib/pom.xml   | 2 +-
 common/pom.xml   | 2 +-
 common/rest-api/pom.xml  | 2 +-
 core/logic/pom.xml   | 2 +-
 core/migration/pom.xml   | 2 +-
 core/persistence-api/pom.xml | 2 +-
 core/persistence-jpa/pom.xml | 2 +-
 core/pom.xml | 2 +-
 core/provisioning-api/pom.xml| 2 +-
 core/provisioning-java/pom.xml   | 2 +-
 core/rest-cxf/pom.xml| 2 +-
 core/spring/pom.xml  | 2 +-
 core/workflow-activiti/pom.xml   | 2 +-
 core/workflow-api/pom.xml| 2 +-
 core/workflow-flowable/pom.xml   | 2 +-
 core/workflow-java/pom.xml   | 2 +-
 deb/console/pom.xml  | 2 +-
 deb/core/pom.xml | 2 +-
 deb/enduser/pom.xml  | 2 +-
 deb/pom.xml  | 2 +-
 ext/camel/client-console/pom.xml | 2 +-
 ext/camel/common-lib/pom.xml | 2 +-
 ext/camel/logic/pom.xml  | 2 +-
 ext/camel/persistence-api/pom.xml| 2 +-
 ext/camel/persistence-jpa/pom.xml| 2 +-
 ext/camel/pom.xml| 2 +-
 ext/camel/provisioning-api/pom.xml   | 2 +-
 ext/camel/provisioning-camel/pom.xml | 2 +-
 ext/camel/rest-api/pom.xml   | 2 +-
 ext/camel/rest-cxf/pom.xml   | 2 +-
 ext/elasticsearch/client-elasticsearch/pom.xml   | 2 +-
 ext/elasticsearch/persistence-jpa/pom.xml| 2 +-
 ext/elasticsearch/pom.xml| 2 +-
 ext/elasticsearch/provisioning-java/pom.xml  | 2 +-
 ext/pom.xml  | 2 +-
 ext/saml2sp/agent/pom.xml| 2 +-
 ext/saml2sp/client-console/pom.xml   | 2 +-
 ext/saml2sp/client-enduser/pom.xml   | 2 +-
 ext/saml2sp/common-lib/pom.xml   | 2 +-
 ext/saml2sp/logic/pom.xml| 2 +-
 ext/saml2sp/persistence-api/pom.xml  | 2 +-
 ext/saml2sp/persistence-jpa/pom.xml  | 2 +-
 ext/saml2sp/pom.xml  | 2 +-
 ext/saml2sp/provisioning-api/pom.xml | 2 +-
 ext/saml2sp/provisioning-java/pom.xml| 2 +-
 ext/saml2sp/rest-api/pom.xml | 2 +-
 ext/saml2sp/rest-cxf/pom.xml | 2 +-
 ext/swagger-ui/pom.xml   | 2 +-
 fit/build-tools/pom.xml  | 2 +-
 fit/console-reference/pom.xml| 2 +-
 fit/core-reference/pom.xml   | 2 +-
 fit/enduser-reference/pom.xml| 2 +-
 

[2/3] syncope git commit: Updating downloads site page for release

2017-09-06 Thread ilgrosso
Updating downloads site page for release


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/f9e265db
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/f9e265db
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/f9e265db

Branch: refs/heads/2_0_X
Commit: f9e265db3c8057aca3f418575f52bd9ba0a93a14
Parents: f08fe38
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 10:13:53 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 10:13:53 2017 +0200

--
 src/site/xdoc/downloads.xml | 76 
 1 file changed, 38 insertions(+), 38 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/f9e265db/src/site/xdoc/downloads.xml
--
diff --git a/src/site/xdoc/downloads.xml b/src/site/xdoc/downloads.xml
index 7c1084d..0ec8063 100644
--- a/src/site/xdoc/downloads.xml
+++ b/src/site/xdoc/downloads.xml
@@ -49,8 +49,8 @@ under the License.
 
   
 
-  
-Release date: July 3rd 2017
+  
+Release date: September 6th 2017
 
   https://cwiki.apache.org/confluence/display/SYNCOPE/Jazz;>Release 
notes
 
@@ -64,92 +64,92 @@ under the License.
   
 
   
-http://www.apache.org/dyn/closer.lua/syncope/2.0.4/syncope-2.0.4-source-release.zip;>syncope-2.0.4-source-release.zip
+http://www.apache.org/dyn/closer.lua/syncope/2.0.5/syncope-2.0.5-source-release.zip;>syncope-2.0.5-source-release.zip
   
   
-https://www.apache.org/dist/syncope/2.0.4/syncope-2.0.4-source-release.zip.asc;>asc
 
-https://www.apache.org/dist/syncope/2.0.4/syncope-2.0.4-source-release.zip.md5;>md5
 
-https://www.apache.org/dist/syncope/2.0.4/syncope-2.0.4-source-release.zip.sha1;>sha1
+https://www.apache.org/dist/syncope/2.0.5/syncope-2.0.5-source-release.zip.asc;>asc
 
+https://www.apache.org/dist/syncope/2.0.5/syncope-2.0.5-source-release.zip.md5;>md5
 
+https://www.apache.org/dist/syncope/2.0.5/syncope-2.0.5-source-release.zip.sha1;>sha1
   
 
 
   
-http://www.apache.org/dyn/closer.lua/syncope/2.0.4/syncope-standalone-2.0.4-distribution.zip;>syncope-standalone-2.0.4-distribution.zip
+http://www.apache.org/dyn/closer.lua/syncope/2.0.5/syncope-standalone-2.0.5-distribution.zip;>syncope-standalone-2.0.5-distribution.zip
   
   
-https://www.apache.org/dist/syncope/2.0.4/syncope-standalone-2.0.4-distribution.zip.asc;>asc
 
-https://www.apache.org/dist/syncope/2.0.4/syncope-standalone-2.0.4-distribution.zip.md5;>md5
 
-https://www.apache.org/dist/syncope/2.0.4/syncope-standalone-2.0.4-distribution.zip.sha1;>sha1
+https://www.apache.org/dist/syncope/2.0.5/syncope-standalone-2.0.5-distribution.zip.asc;>asc
 
+https://www.apache.org/dist/syncope/2.0.5/syncope-standalone-2.0.5-distribution.zip.md5;>md5
 
+https://www.apache.org/dist/syncope/2.0.5/syncope-standalone-2.0.5-distribution.zip.sha1;>sha1
   
 
 
   
-http://www.apache.org/dyn/closer.lua/syncope/2.0.4/apache-syncope-2.0.4.deb;>apache-syncope-2.0.4.deb
+http://www.apache.org/dyn/closer.lua/syncope/2.0.5/apache-syncope-2.0.5.deb;>apache-syncope-2.0.5.deb
   
   
-https://www.apache.org/dist/syncope/2.0.4/apache-syncope-2.0.4.deb.asc;>asc
 
-https://www.apache.org/dist/syncope/2.0.4/apache-syncope-2.0.4.deb.md5;>md5
 
-https://www.apache.org/dist/syncope/2.0.4/apache-syncope-2.0.4.deb.sha1;>sha1
+https://www.apache.org/dist/syncope/2.0.5/apache-syncope-2.0.5.deb.asc;>asc
 
+https://www.apache.org/dist/syncope/2.0.5/apache-syncope-2.0.5.deb.md5;>md5
 
+https://www.apache.org/dist/syncope/2.0.5/apache-syncope-2.0.5.deb.sha1;>sha1
   
 
 
   
-http://www.apache.org/dyn/closer.lua/syncope/2.0.4/apache-syncope-console-2.0.4.deb;>apache-syncope-console-2.0.4.deb
+http://www.apache.org/dyn/closer.lua/syncope/2.0.5/apache-syncope-console-2.0.5.deb;>apache-syncope-console-2.0.5.deb
   
   
-https://www.apache.org/dist/syncope/2.0.4/apache-syncope-console-2.0.4.deb.asc;>asc
 
-https://www.apache.org/dist/syncope/2.0.4/apache-syncope-console-2.0.4.deb.md5;>md5
 
-  

[3/3] syncope git commit: Updating Eclipse files for release

2017-09-06 Thread ilgrosso
Updating Eclipse files for release


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/6096e344
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/6096e344
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/6096e344

Branch: refs/heads/2_0_X
Commit: 6096e344db1eb31acf3a4c263e6cf3b0d22433fc
Parents: f9e265d
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 10:14:16 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 10:14:16 2017 +0200

--
 .../org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF | 2 +-
 .../org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF  | 2 +-
 .../releng/org.apache.syncope.ide.eclipse.site/category.xml| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/6096e344/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
--
diff --git 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
index c2741ff..2c08a07 100644
--- 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
+++ 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
 Bundle-Name: Apache Syncope Eclipse Plugin
 Bundle-SymbolicName: org.apache.syncope.ide.eclipse.plugin;singleton:=true
-Bundle-Version: 2.0.5.qualifier
+Bundle-Version: 2.0.5
 Bundle-Activator: org.apache.syncope.ide.eclipse.plugin.Activator
 Require-Bundle: org.eclipse.ui,
   org.eclipse.core.runtime,

http://git-wip-us.apache.org/repos/asf/syncope/blob/6096e344/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
--
diff --git 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
index 3716934..e441a19 100644
--- 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
+++ 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
 Bundle-Name: org.apache.syncope.ide.eclipse.tests
 Bundle-SymbolicName: org.apache.syncope.ide.eclipse.tests;singleton:=true
-Bundle-Version: 2.0.5.qualifier
+Bundle-Version: 2.0.5
 Bundle-ActivationPolicy: lazy
 Bundle-Vendor: 
 Bundle-RequiredExecutionEnvironment: J2SE-1.5

http://git-wip-us.apache.org/repos/asf/syncope/blob/6096e344/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
--
diff --git 
a/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml 
b/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
index a3f24d1..5449072 100644
--- a/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
+++ b/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
@@ -18,7 +18,7 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-   
+   
   





[1/3] syncope git commit: Updating CHANGES for release

2017-09-06 Thread ilgrosso
Repository: syncope
Updated Branches:
  refs/heads/2_0_X 12bd444c4 -> 6096e344d


Updating CHANGES for release


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/f08fe382
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/f08fe382
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/f08fe382

Branch: refs/heads/2_0_X
Commit: f08fe3826700f70320bde88dfdf76a9f5961cb26
Parents: 12bd444
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 10:13:25 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 10:13:25 2017 +0200

--
 CHANGES | 71 
 1 file changed, 71 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/f08fe382/CHANGES
--
diff --git a/CHANGES b/CHANGES
index 2be43e4..190515a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,77 @@ Apache Syncope - CHANGES
 Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0
 

 
+Release Notes - Syncope - Version 2.0.5
+
+
+** Bug
+* [SYNCOPE-1139] - StackOverflowError while serializing AuditEntry after 
propagation
+* [SYNCOPE-1140] - Error when trying to assign a relationship
+* [SYNCOPE-1141] - Error when getting /numbers with application/xml
+* [SYNCOPE-1149] - Access token still required for the third party JWT SSO 
integration scenario
+* [SYNCOPE-1150] - Invalid property set for propagation task modal page 
header
+* [SYNCOPE-1151] -  Glinch in the root realm information
+* [SYNCOPE-1158] - Misleading Push Task reports
+* [SYNCOPE-1162] - Change to Connector's display name not reflected by 
contextual menu
+* [SYNCOPE-1163] - External Resource priority is never NULL
+* [SYNCOPE-1166] - No propagation task is created for resources where the 
password is not propagated
+* [SYNCOPE-1168] - Encryptor pads short secret keys with "0" instead of 
random characters
+* [SYNCOPE-1169] - Operation not supported error when trying to run a bulk 
action for users 
+* [SYNCOPE-1170] - Can't remove a "Dynamic USER assignment"
+* [SYNCOPE-1174] - NPE in AccessTokenDataBinderImpl if no 
'jwt.lifetime.minutes' schema is present
+* [SYNCOPE-1175] - Password Reset Token Generation Not Working After 
Upgrading to 2.0.4
+* [SYNCOPE-1178] - PlainSchema page empty while self update on Enduser 
+* [SYNCOPE-1179] - JWT "Date" claims are interpreted using milliseconds 
instead of seconds
+* [SYNCOPE-1180] - No e-mail debug output
+* [SYNCOPE-1184] - In the "Attributes to be displayed" sellection show the 
ones already displayed by default
+* [SYNCOPE-1188] - NPE Message while saving Dynamic Realm with empty key
+* [SYNCOPE-1189] - Realms page not accessible when user has permissions on 
dynamic realms
+* [SYNCOPE-1190] - Username not refreshed on toggle menu after user update
+* [SYNCOPE-1193] - Add the option to update a user via REST by using the 
username as key
+* [SYNCOPE-1199] - Syncope performance: AnyObjectTO's creation time grows 
with it's quantity
+* [SYNCOPE-1203] - Not possible to add provision rules for "Realm" type
+
+** Improvement
+* [SYNCOPE-1096] - Download button should be disabled while populating for 
the first time a binary attribute
+* [SYNCOPE-1097] - Downloaded file for binary attribute better naming
+* [SYNCOPE-1115] - Display attributes for propagation tasks
+* [SYNCOPE-1143] - Fine-grained administration rights for Connector and 
Resources
+* [SYNCOPE-1146] - On-the-fly creation of unmatched users logging via SAML 
2.0
+* [SYNCOPE-1147] - Extend SAML 2.0 IdP mapping to Roles
+* [SYNCOPE-1152] - Clear out unneeded anonymous authenticated services
+* [SYNCOPE-1153] - Push Tasks result to show "no operation" when operation 
is not enabled 
+* [SYNCOPE-1154] - Edit resource to show always in the same order in list 
of object provision rules
+* [SYNCOPE-1155] - Hard-coded /syncope-enduser HTTP subcontext
+* [SYNCOPE-1159] - Allow to set Realm for Push Tasks
+* [SYNCOPE-1164] - Complete mapping for Realm provisioning
+* [SYNCOPE-1167] - Preliminary AnyType selection when adding new provision 
rule
+* [SYNCOPE-1171] - Skip Relationships page when no relationship types exist
+* [SYNCOPE-1172] - Error message of "Malformed Path" could be made a 
little clearer
+* [SYNCOPE-1173] - Replace List dynGroups with List 
dynMemberships
+* [SYNCOPE-1176] - Edit provisioning rules menu is flat and not toggle
+* 

[1/2] syncope git commit: Adjusting the release process to avoid quirks with buildnumber-maven-plugin

2017-09-06 Thread ilgrosso
Repository: syncope
Updated Branches:
  refs/heads/2_0_X 0bafa1682 -> 12bd444c4
  refs/heads/master faba42e2f -> 00ef0032f


Adjusting the release process to avoid quirks with buildnumber-maven-plugin


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/12bd444c
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/12bd444c
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/12bd444c

Branch: refs/heads/2_0_X
Commit: 12bd444c480088120f7c9aac76ef6c377712abcb
Parents: 0bafa16
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 10:09:15 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 10:09:15 2017 +0200

--
 src/site/xdoc/release-process.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/12bd444c/src/site/xdoc/release-process.xml
--
diff --git a/src/site/xdoc/release-process.xml 
b/src/site/xdoc/release-process.xml
index 626480b..26f323d 100644
--- a/src/site/xdoc/release-process.xml
+++ b/src/site/xdoc/release-process.xml
@@ -195,7 +195,7 @@ git push]]>
 
   
 Do a dry run of the release:prepare step.
-mvn -P apache-release release:prepare 
-DdryRun=true
+mvn -P apache-release release:prepare 
-Darguments="-DbuildNumber=syncope-$VERSION" -DdryRun=true
 
 The dry run will not commit any changes and gives you the 
opportunity to verify that the 
 release process will complete as expected.
@@ -248,7 +248,7 @@ gpg: Signature made ...]]>
   
 Run the release:prepare step for real this time. 
You'll be prompted for the same version 
 information and optionally your GPG passphrase again.
-mvn -P apache-release release:prepare
+mvn -P apache-release release:prepare 
-Darguments="-DbuildNumber=syncope-$VERSION"
   
   
 Backup (zip or tar) your local release candidate directory in case 
you need to rollback the release after 
@@ -344,7 +344,7 @@ svn commit -m "Staging site for release"]]>
   
   
 From $SYNCOPE_RELEASE_DIR execute (this step will 
create a maven staging repository):
-mvn -P apache-release release:perform 
[-Duser.name=your_apache_uid]
+mvn -P apache-release release:perform 
-Darguments="-DbuildNumber=syncope-$VERSION" 
[-Duser.name=your_apache_uid]
 
 
   If your local OS userid doesn't match your Apache userid, 
then you'll have to also override the value 



[2/2] syncope git commit: Adjusting the release process to avoid quirks with buildnumber-maven-plugin

2017-09-06 Thread ilgrosso
Adjusting the release process to avoid quirks with buildnumber-maven-plugin


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/00ef0032
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/00ef0032
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/00ef0032

Branch: refs/heads/master
Commit: 00ef0032fcea60f7b0ef48208c2fcaacf803a041
Parents: faba42e
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 10:09:15 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 10:09:23 2017 +0200

--
 src/site/xdoc/release-process.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/00ef0032/src/site/xdoc/release-process.xml
--
diff --git a/src/site/xdoc/release-process.xml 
b/src/site/xdoc/release-process.xml
index 107b36a..c3e5804 100644
--- a/src/site/xdoc/release-process.xml
+++ b/src/site/xdoc/release-process.xml
@@ -195,7 +195,7 @@ git push]]>
 
   
 Do a dry run of the release:prepare step.
-mvn -P apache-release release:prepare 
-DdryRun=true
+mvn -P apache-release release:prepare 
-Darguments="-DbuildNumber=syncope-$VERSION" -DdryRun=true
 
 The dry run will not commit any changes and gives you the 
opportunity to verify that the 
 release process will complete as expected.
@@ -248,7 +248,7 @@ gpg: Signature made ...]]>
   
 Run the release:prepare step for real this time. 
You'll be prompted for the same version 
 information and optionally your GPG passphrase again.
-mvn -P apache-release release:prepare
+mvn -P apache-release release:prepare 
-Darguments="-DbuildNumber=syncope-$VERSION"
   
   
 Backup (zip or tar) your local release candidate directory in case 
you need to rollback the release after 
@@ -344,7 +344,7 @@ svn commit -m "Staging site for release"]]>
   
   
 From $SYNCOPE_RELEASE_DIR execute (this step will 
create a maven staging repository):
-mvn -P apache-release release:perform 
[-Duser.name=your_apache_uid]
+mvn -P apache-release release:perform 
-Darguments="-DbuildNumber=syncope-$VERSION" 
[-Duser.name=your_apache_uid]
 
 
   If your local OS userid doesn't match your Apache userid, 
then you'll have to also override the value 



[4/7] syncope git commit: Revert "Updating downloads site page for release"

2017-09-06 Thread ilgrosso
Revert "Updating downloads site page for release"

This reverts commit 4aaba9115e4f93175659cf118fbb6f2b9bf0d584.


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/297879aa
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/297879aa
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/297879aa

Branch: refs/heads/2_0_X
Commit: 297879aa553b9c150a2e96d786697cc5ea95c054
Parents: e4b79ec
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 09:01:45 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 09:01:45 2017 +0200

--
 src/site/xdoc/downloads.xml | 76 
 1 file changed, 38 insertions(+), 38 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/297879aa/src/site/xdoc/downloads.xml
--
diff --git a/src/site/xdoc/downloads.xml b/src/site/xdoc/downloads.xml
index 8aa2ae5..7c1084d 100644
--- a/src/site/xdoc/downloads.xml
+++ b/src/site/xdoc/downloads.xml
@@ -49,8 +49,8 @@ under the License.
 
   
 
-  
-Release date: September 5th 2017
+  
+Release date: July 3rd 2017
 
   https://cwiki.apache.org/confluence/display/SYNCOPE/Jazz;>Release 
notes
 
@@ -64,92 +64,92 @@ under the License.
   
 
   
-http://www.apache.org/dyn/closer.lua/syncope/2.0.5/syncope-2.0.5-source-release.zip;>syncope-2.0.5-source-release.zip
+http://www.apache.org/dyn/closer.lua/syncope/2.0.4/syncope-2.0.4-source-release.zip;>syncope-2.0.4-source-release.zip
   
   
-https://www.apache.org/dist/syncope/2.0.5/syncope-2.0.5-source-release.zip.asc;>asc
 
-https://www.apache.org/dist/syncope/2.0.5/syncope-2.0.5-source-release.zip.md5;>md5
 
-https://www.apache.org/dist/syncope/2.0.5/syncope-2.0.5-source-release.zip.sha1;>sha1
+https://www.apache.org/dist/syncope/2.0.4/syncope-2.0.4-source-release.zip.asc;>asc
 
+https://www.apache.org/dist/syncope/2.0.4/syncope-2.0.4-source-release.zip.md5;>md5
 
+https://www.apache.org/dist/syncope/2.0.4/syncope-2.0.4-source-release.zip.sha1;>sha1
   
 
 
   
-http://www.apache.org/dyn/closer.lua/syncope/2.0.5/syncope-standalone-2.0.5-distribution.zip;>syncope-standalone-2.0.5-distribution.zip
+http://www.apache.org/dyn/closer.lua/syncope/2.0.4/syncope-standalone-2.0.4-distribution.zip;>syncope-standalone-2.0.4-distribution.zip
   
   
-https://www.apache.org/dist/syncope/2.0.5/syncope-standalone-2.0.5-distribution.zip.asc;>asc
 
-https://www.apache.org/dist/syncope/2.0.5/syncope-standalone-2.0.5-distribution.zip.md5;>md5
 
-https://www.apache.org/dist/syncope/2.0.5/syncope-standalone-2.0.5-distribution.zip.sha1;>sha1
+https://www.apache.org/dist/syncope/2.0.4/syncope-standalone-2.0.4-distribution.zip.asc;>asc
 
+https://www.apache.org/dist/syncope/2.0.4/syncope-standalone-2.0.4-distribution.zip.md5;>md5
 
+https://www.apache.org/dist/syncope/2.0.4/syncope-standalone-2.0.4-distribution.zip.sha1;>sha1
   
 
 
   
-http://www.apache.org/dyn/closer.lua/syncope/2.0.5/apache-syncope-2.0.5.deb;>apache-syncope-2.0.5.deb
+http://www.apache.org/dyn/closer.lua/syncope/2.0.4/apache-syncope-2.0.4.deb;>apache-syncope-2.0.4.deb
   
   
-https://www.apache.org/dist/syncope/2.0.5/apache-syncope-2.0.5.deb.asc;>asc
 
-https://www.apache.org/dist/syncope/2.0.5/apache-syncope-2.0.5.deb.md5;>md5
 
-https://www.apache.org/dist/syncope/2.0.5/apache-syncope-2.0.5.deb.sha1;>sha1
+https://www.apache.org/dist/syncope/2.0.4/apache-syncope-2.0.4.deb.asc;>asc
 
+https://www.apache.org/dist/syncope/2.0.4/apache-syncope-2.0.4.deb.md5;>md5
 
+https://www.apache.org/dist/syncope/2.0.4/apache-syncope-2.0.4.deb.sha1;>sha1
   
 
 
   
-http://www.apache.org/dyn/closer.lua/syncope/2.0.5/apache-syncope-console-2.0.5.deb;>apache-syncope-console-2.0.5.deb
+http://www.apache.org/dyn/closer.lua/syncope/2.0.4/apache-syncope-console-2.0.4.deb;>apache-syncope-console-2.0.4.deb
   
   
-https://www.apache.org/dist/syncope/2.0.5/apache-syncope-console-2.0.5.deb.asc;>asc
 
-

[7/7] syncope git commit: Revert "Updating CHANGES for release"

2017-09-06 Thread ilgrosso
Revert "Updating CHANGES for release"

This reverts commit d649dbbdb1d8b865a002cdc0c69b04f6efe74544.


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/0bafa168
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/0bafa168
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/0bafa168

Branch: refs/heads/2_0_X
Commit: 0bafa1682f8d3a2be0169f1d72b9cac1755c6efe
Parents: 8bf3ebb
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 09:01:49 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 09:01:49 2017 +0200

--
 CHANGES | 69 
 1 file changed, 69 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/0bafa168/CHANGES
--
diff --git a/CHANGES b/CHANGES
index 4c69d58..2be43e4 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,75 +2,6 @@ Apache Syncope - CHANGES
 Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0
 

 
-Release Notes - Syncope - Version 2.0.5
-
-
-** Bug
-* [SYNCOPE-1139] - StackOverflowError while serializing AuditEntry after 
propagation
-* [SYNCOPE-1140] - Error when trying to assign a relationship
-* [SYNCOPE-1141] - Error when getting /numbers with application/xml
-* [SYNCOPE-1149] - Access token still required for the third party JWT SSO 
integration scenario
-* [SYNCOPE-1150] - Invalid property set for propagation task modal page 
header
-* [SYNCOPE-1151] -  Glinch in the root realm information
-* [SYNCOPE-1158] - Misleading Push Task reports
-* [SYNCOPE-1162] - Change to Connector's display name not reflected by 
contextual menu
-* [SYNCOPE-1163] - External Resource priority is never NULL
-* [SYNCOPE-1166] - No propagation task is created for resources where the 
password is not propagated
-* [SYNCOPE-1168] - Encryptor pads short secret keys with "0" instead of 
random characters
-* [SYNCOPE-1169] - Operation not supported error when trying to run a bulk 
action for users 
-* [SYNCOPE-1170] - Can't remove a "Dynamic USER assignment"
-* [SYNCOPE-1174] - NPE in AccessTokenDataBinderImpl if no 
'jwt.lifetime.minutes' schema is present
-* [SYNCOPE-1175] - Password Reset Token Generation Not Working After 
Upgrading to 2.0.4
-* [SYNCOPE-1178] - PlainSchema page empty while self update on Enduser 
-* [SYNCOPE-1179] - JWT "Date" claims are interpreted using milliseconds 
instead of seconds
-* [SYNCOPE-1180] - No e-mail debug output
-* [SYNCOPE-1184] - In the "Attributes to be displayed" sellection show the 
ones already displayed by default
-* [SYNCOPE-1188] - NPE Message while saving Dynamic Realm with empty key
-* [SYNCOPE-1189] - Realms page not accessible when user has permissions on 
dynamic realms
-* [SYNCOPE-1190] - Username not refreshed on toggle menu after user update
-* [SYNCOPE-1193] - Add the option to update a user via REST by using the 
username as key
-
-** Improvement
-* [SYNCOPE-1096] - Download button should be disabled while populating for 
the first time a binary attribute
-* [SYNCOPE-1097] - Downloaded file for binary attribute better naming
-* [SYNCOPE-1115] - Display attributes for propagation tasks
-* [SYNCOPE-1143] - Fine-grained administration rights for Connector and 
Resources
-* [SYNCOPE-1146] - On-the-fly creation of unmatched users logging via SAML 
2.0
-* [SYNCOPE-1147] - Extend SAML 2.0 IdP mapping to Roles
-* [SYNCOPE-1152] - Clear out unneeded anonymous authenticated services
-* [SYNCOPE-1153] - Push Tasks result to show "no operation" when operation 
is not enabled 
-* [SYNCOPE-1154] - Edit resource to show always in the same order in list 
of object provision rules
-* [SYNCOPE-1155] - Hard-coded /syncope-enduser HTTP subcontext
-* [SYNCOPE-1159] - Allow to set Realm for Push Tasks
-* [SYNCOPE-1164] - Complete mapping for Realm provisioning
-* [SYNCOPE-1167] - Preliminary AnyType selection when adding new provision 
rule
-* [SYNCOPE-1171] - Skip Relationships page when no relationship types exist
-* [SYNCOPE-1172] - Error message of "Malformed Path" could be made a 
little clearer
-* [SYNCOPE-1173] - Replace List dynGroups with List 
dynMemberships
-* [SYNCOPE-1176] - Edit provisioning rules menu is flat and not toggle
-* [SYNCOPE-1177] - Configuration Parameter deletion should ask for 
confirmation
-* [SYNCOPE-1182] - Use Remote Key in the Mapping to fetch external entities
-* [SYNCOPE-1183] - Realm 

[2/7] syncope git commit: Revert "[maven-release-plugin] prepare for next development iteration"

2017-09-06 Thread ilgrosso
Revert "[maven-release-plugin] prepare for next development iteration"

This reverts commit 1d8f2174fe46f5699867f67a8f25621059ec373c.


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/8edb606d
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/8edb606d
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/8edb606d

Branch: refs/heads/2_0_X
Commit: 8edb606d53bb85691c721ccc708d1644193d9e15
Parents: 26dfd28
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 09:01:42 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 09:01:42 2017 +0200

--
 archetype/pom.xml| 2 +-
 client/cli/pom.xml   | 2 +-
 client/console/pom.xml   | 2 +-
 client/enduser/pom.xml   | 2 +-
 client/lib/pom.xml   | 2 +-
 client/pom.xml   | 2 +-
 common/lib/pom.xml   | 2 +-
 common/pom.xml   | 2 +-
 common/rest-api/pom.xml  | 2 +-
 core/logic/pom.xml   | 2 +-
 core/migration/pom.xml   | 2 +-
 core/persistence-api/pom.xml | 2 +-
 core/persistence-jpa/pom.xml | 2 +-
 core/pom.xml | 2 +-
 core/provisioning-api/pom.xml| 2 +-
 core/provisioning-java/pom.xml   | 2 +-
 core/rest-cxf/pom.xml| 2 +-
 core/spring/pom.xml  | 2 +-
 core/workflow-activiti/pom.xml   | 2 +-
 core/workflow-api/pom.xml| 2 +-
 core/workflow-flowable/pom.xml   | 2 +-
 core/workflow-java/pom.xml   | 2 +-
 deb/console/pom.xml  | 2 +-
 deb/core/pom.xml | 2 +-
 deb/enduser/pom.xml  | 2 +-
 deb/pom.xml  | 2 +-
 ext/camel/client-console/pom.xml | 2 +-
 ext/camel/common-lib/pom.xml | 2 +-
 ext/camel/logic/pom.xml  | 2 +-
 ext/camel/persistence-api/pom.xml| 2 +-
 ext/camel/persistence-jpa/pom.xml| 2 +-
 ext/camel/pom.xml| 2 +-
 ext/camel/provisioning-api/pom.xml   | 2 +-
 ext/camel/provisioning-camel/pom.xml | 2 +-
 ext/camel/rest-api/pom.xml   | 2 +-
 ext/camel/rest-cxf/pom.xml   | 2 +-
 ext/elasticsearch/client-elasticsearch/pom.xml   | 2 +-
 ext/elasticsearch/persistence-jpa/pom.xml| 2 +-
 ext/elasticsearch/pom.xml| 2 +-
 ext/elasticsearch/provisioning-java/pom.xml  | 2 +-
 ext/pom.xml  | 2 +-
 ext/saml2sp/agent/pom.xml| 2 +-
 ext/saml2sp/client-console/pom.xml   | 2 +-
 ext/saml2sp/client-enduser/pom.xml   | 2 +-
 ext/saml2sp/common-lib/pom.xml   | 2 +-
 ext/saml2sp/logic/pom.xml| 2 +-
 ext/saml2sp/persistence-api/pom.xml  | 2 +-
 ext/saml2sp/persistence-jpa/pom.xml  | 2 +-
 ext/saml2sp/pom.xml  | 2 +-
 ext/saml2sp/provisioning-api/pom.xml | 2 +-
 ext/saml2sp/provisioning-java/pom.xml| 2 +-
 ext/saml2sp/rest-api/pom.xml | 2 +-
 ext/saml2sp/rest-cxf/pom.xml | 2 +-
 ext/swagger-ui/pom.xml   | 2 +-
 fit/build-tools/pom.xml  | 2 +-
 fit/console-reference/pom.xml| 2 +-
 fit/core-reference/pom.xml   | 2 +-
 fit/enduser-reference/pom.xml| 2 +-
 

[1/7] syncope git commit: Revert "Updating Eclipse files for next development iteration"

2017-09-06 Thread ilgrosso
Repository: syncope
Updated Branches:
  refs/heads/2_0_X 72ef6c7ea -> 0bafa1682


Revert "Updating Eclipse files for next development iteration"

This reverts commit 72ef6c7ea11fc6126fd4c7a5314c5dd06561aa3d.


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/26dfd28a
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/26dfd28a
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/26dfd28a

Branch: refs/heads/2_0_X
Commit: 26dfd28a1b8da1dcec255fe3940673afde366d9b
Parents: 72ef6c7
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 09:00:56 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 09:00:56 2017 +0200

--
 .../org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF | 2 +-
 .../org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF  | 2 +-
 ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/pom.xml   | 2 +-
 .../releng/org.apache.syncope.ide.eclipse.site/category.xml| 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/26dfd28a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
--
diff --git 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
index 6c39cc3..2c08a07 100644
--- 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
+++ 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
 Bundle-Name: Apache Syncope Eclipse Plugin
 Bundle-SymbolicName: org.apache.syncope.ide.eclipse.plugin;singleton:=true
-Bundle-Version: 2.0.6.qualifier
+Bundle-Version: 2.0.5
 Bundle-Activator: org.apache.syncope.ide.eclipse.plugin.Activator
 Require-Bundle: org.eclipse.ui,
   org.eclipse.core.runtime,

http://git-wip-us.apache.org/repos/asf/syncope/blob/26dfd28a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
--
diff --git 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
index c71210c..e441a19 100644
--- 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
+++ 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
 Bundle-Name: org.apache.syncope.ide.eclipse.tests
 Bundle-SymbolicName: org.apache.syncope.ide.eclipse.tests;singleton:=true
-Bundle-Version: 2.0.6.qualifier
+Bundle-Version: 2.0.5
 Bundle-ActivationPolicy: lazy
 Bundle-Vendor: 
 Bundle-RequiredExecutionEnvironment: J2SE-1.5

http://git-wip-us.apache.org/repos/asf/syncope/blob/26dfd28a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/pom.xml
--
diff --git a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/pom.xml 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/pom.xml
index abf3f2f..2e5533b 100644
--- a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/pom.xml
+++ b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/pom.xml
@@ -24,7 +24,7 @@ under the License.
   
 org.apache.syncope.ide
 syncope-ide-eclipse
-2.0.6-SNAPSHOT
+2.0.5-SNAPSHOT
 ../../
   
 

http://git-wip-us.apache.org/repos/asf/syncope/blob/26dfd28a/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
--
diff --git 
a/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml 
b/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
index a5a628e..5449072 100644
--- a/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
+++ b/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
@@ -18,7 +18,7 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-   
+   
   





[5/7] syncope git commit: Revert "Updating Eclipse files for release"

2017-09-06 Thread ilgrosso
Revert "Updating Eclipse files for release"

This reverts commit 76596990cef28e682c8ad5f2c5cc25bb63f81bb0.


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/cdc5e4a2
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/cdc5e4a2
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/cdc5e4a2

Branch: refs/heads/2_0_X
Commit: cdc5e4a217476730f333fb77ed0bf917c3b0d2f4
Parents: 297879a
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 09:01:46 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 09:01:46 2017 +0200

--
 .../org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF | 2 +-
 .../org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF  | 2 +-
 .../releng/org.apache.syncope.ide.eclipse.site/category.xml| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/cdc5e4a2/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
--
diff --git 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
index 2c08a07..c2741ff 100644
--- 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
+++ 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
 Bundle-Name: Apache Syncope Eclipse Plugin
 Bundle-SymbolicName: org.apache.syncope.ide.eclipse.plugin;singleton:=true
-Bundle-Version: 2.0.5
+Bundle-Version: 2.0.5.qualifier
 Bundle-Activator: org.apache.syncope.ide.eclipse.plugin.Activator
 Require-Bundle: org.eclipse.ui,
   org.eclipse.core.runtime,

http://git-wip-us.apache.org/repos/asf/syncope/blob/cdc5e4a2/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
--
diff --git 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
index e441a19..3716934 100644
--- 
a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
+++ 
b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.tests/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
 Bundle-Name: org.apache.syncope.ide.eclipse.tests
 Bundle-SymbolicName: org.apache.syncope.ide.eclipse.tests;singleton:=true
-Bundle-Version: 2.0.5
+Bundle-Version: 2.0.5.qualifier
 Bundle-ActivationPolicy: lazy
 Bundle-Vendor: 
 Bundle-RequiredExecutionEnvironment: J2SE-1.5

http://git-wip-us.apache.org/repos/asf/syncope/blob/cdc5e4a2/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
--
diff --git 
a/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml 
b/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
index 5449072..a3f24d1 100644
--- a/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
+++ b/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/category.xml
@@ -18,7 +18,7 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-   
+   
   





[3/7] syncope git commit: Revert "[maven-release-plugin] prepare release syncope-2.0.5"

2017-09-06 Thread ilgrosso
Revert "[maven-release-plugin] prepare release syncope-2.0.5"

This reverts commit 726614b80cd25168637754f88cdb2f9030e77012.


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/e4b79ec7
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/e4b79ec7
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/e4b79ec7

Branch: refs/heads/2_0_X
Commit: e4b79ec7c259a1585012c71cd8cd9c85bb67f6df
Parents: 8edb606
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 09:01:44 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 09:01:44 2017 +0200

--
 archetype/pom.xml| 2 +-
 client/cli/pom.xml   | 2 +-
 client/console/pom.xml   | 2 +-
 client/enduser/pom.xml   | 2 +-
 client/lib/pom.xml   | 2 +-
 client/pom.xml   | 2 +-
 common/lib/pom.xml   | 2 +-
 common/pom.xml   | 2 +-
 common/rest-api/pom.xml  | 2 +-
 core/logic/pom.xml   | 2 +-
 core/migration/pom.xml   | 2 +-
 core/persistence-api/pom.xml | 2 +-
 core/persistence-jpa/pom.xml | 2 +-
 core/pom.xml | 2 +-
 core/provisioning-api/pom.xml| 2 +-
 core/provisioning-java/pom.xml   | 2 +-
 core/rest-cxf/pom.xml| 2 +-
 core/spring/pom.xml  | 2 +-
 core/workflow-activiti/pom.xml   | 2 +-
 core/workflow-api/pom.xml| 2 +-
 core/workflow-flowable/pom.xml   | 2 +-
 core/workflow-java/pom.xml   | 2 +-
 deb/console/pom.xml  | 2 +-
 deb/core/pom.xml | 2 +-
 deb/enduser/pom.xml  | 2 +-
 deb/pom.xml  | 2 +-
 ext/camel/client-console/pom.xml | 2 +-
 ext/camel/common-lib/pom.xml | 2 +-
 ext/camel/logic/pom.xml  | 2 +-
 ext/camel/persistence-api/pom.xml| 2 +-
 ext/camel/persistence-jpa/pom.xml| 2 +-
 ext/camel/pom.xml| 2 +-
 ext/camel/provisioning-api/pom.xml   | 2 +-
 ext/camel/provisioning-camel/pom.xml | 2 +-
 ext/camel/rest-api/pom.xml   | 2 +-
 ext/camel/rest-cxf/pom.xml   | 2 +-
 ext/elasticsearch/client-elasticsearch/pom.xml   | 2 +-
 ext/elasticsearch/persistence-jpa/pom.xml| 2 +-
 ext/elasticsearch/pom.xml| 2 +-
 ext/elasticsearch/provisioning-java/pom.xml  | 2 +-
 ext/pom.xml  | 2 +-
 ext/saml2sp/agent/pom.xml| 2 +-
 ext/saml2sp/client-console/pom.xml   | 2 +-
 ext/saml2sp/client-enduser/pom.xml   | 2 +-
 ext/saml2sp/common-lib/pom.xml   | 2 +-
 ext/saml2sp/logic/pom.xml| 2 +-
 ext/saml2sp/persistence-api/pom.xml  | 2 +-
 ext/saml2sp/persistence-jpa/pom.xml  | 2 +-
 ext/saml2sp/pom.xml  | 2 +-
 ext/saml2sp/provisioning-api/pom.xml | 2 +-
 ext/saml2sp/provisioning-java/pom.xml| 2 +-
 ext/saml2sp/rest-api/pom.xml | 2 +-
 ext/saml2sp/rest-cxf/pom.xml | 2 +-
 ext/swagger-ui/pom.xml   | 2 +-
 fit/build-tools/pom.xml  | 2 +-
 fit/console-reference/pom.xml| 2 +-
 fit/core-reference/pom.xml   | 2 +-
 fit/enduser-reference/pom.xml| 2 +-
 fit/pom.xml

[6/7] syncope git commit: Revert "Updating CHANGES for release"

2017-09-06 Thread ilgrosso
Revert "Updating CHANGES for release"

This reverts commit 76f012523f76592309b0ef8d3e2a0694eb9c3db4.


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/8bf3ebb4
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/8bf3ebb4
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/8bf3ebb4

Branch: refs/heads/2_0_X
Commit: 8bf3ebb417469d76aadade291e2c9412787cf142
Parents: cdc5e4a
Author: Francesco Chicchiriccò 
Authored: Wed Sep 6 09:01:47 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Wed Sep 6 09:01:47 2017 +0200

--
 CHANGES | 2 --
 1 file changed, 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/8bf3ebb4/CHANGES
--
diff --git a/CHANGES b/CHANGES
index 190515a..4c69d58 100644
--- a/CHANGES
+++ b/CHANGES
@@ -29,8 +29,6 @@ Release Notes - Syncope - Version 2.0.5
 * [SYNCOPE-1189] - Realms page not accessible when user has permissions on 
dynamic realms
 * [SYNCOPE-1190] - Username not refreshed on toggle menu after user update
 * [SYNCOPE-1193] - Add the option to update a user via REST by using the 
username as key
-* [SYNCOPE-1199] - Syncope performance: AnyObjectTO's creation time grows 
with it's quantity
-* [SYNCOPE-1203] - Not possible to add provision rules for "Realm" type
 
 ** Improvement
 * [SYNCOPE-1096] - Download button should be disabled while populating for 
the first time a binary attribute



[syncope] Git Push Summary

2017-09-06 Thread ilgrosso
Repository: syncope
Updated Tags:  refs/tags/syncope-2.0.5 [deleted] 51f0ee49c