[syncope] branch 2_0_X updated: commons-collections 4.3 requires Java 8

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

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


The following commit(s) were added to refs/heads/2_0_X by this push:
 new 6c0d1a3  commons-collections 4.3 requires Java 8
6c0d1a3 is described below

commit 6c0d1a3f65d37fd58c1323251bffa44d07191495
Author: Francesco Chicchiriccò 
AuthorDate: Wed Feb 6 08:19:21 2019 +0100

commons-collections 4.3 requires Java 8
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index dca05d0..4336cc9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -427,7 +427,7 @@ under the License.
 3.1
 3.8.1
 1.3
-4.3
+4.2
 1.1.3
 
 1.20



Syncope-master-deploy - Build # 3395 - Failure

2019-02-05 Thread Apache Jenkins Server
The Apache Jenkins build system has built Syncope-master-deploy (build #3395)

Status: Failure

Check console output at 
https://builds.apache.org/job/Syncope-master-deploy/3395/ to view the results.

[syncope] branch 2_0_X updated: Update and improvement for Connector and Resource history comparison

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

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


The following commit(s) were added to refs/heads/2_0_X by this push:
 new b1aa52e  Update and improvement for Connector and Resource history 
comparison
b1aa52e is described below

commit b1aa52e3bdb2d44615e339072cfaa82bda8464e3
Author: skylark17 
AuthorDate: Tue Feb 5 17:52:37 2019 +0100

Update and improvement for Connector and Resource history comparison
---
 .../org/apache/syncope/client/console/panels/HistoryConfDetails.java   | 3 ++-
 pom.xml| 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git 
a/client/console/src/main/java/org/apache/syncope/client/console/panels/HistoryConfDetails.java
 
b/client/console/src/main/java/org/apache/syncope/client/console/panels/HistoryConfDetails.java
index 00d95b3..dbd27a8 100644
--- 
a/client/console/src/main/java/org/apache/syncope/client/console/panels/HistoryConfDetails.java
+++ 
b/client/console/src/main/java/org/apache/syncope/client/console/panels/HistoryConfDetails.java
@@ -29,6 +29,7 @@ import org.apache.commons.collections4.IterableUtils;
 import org.apache.commons.collections4.Predicate;
 import org.apache.commons.lang3.tuple.Pair;
 import org.apache.syncope.client.console.SyncopeConsoleSession;
+import org.apache.syncope.client.console.commons.Constants;
 import org.apache.syncope.client.console.rest.ConnectorRestClient;
 import org.apache.syncope.client.console.rest.ResourceRestClient;
 import 
org.apache.syncope.client.console.wicket.markup.html.bootstrap.dialog.BaseModal;
@@ -205,7 +206,7 @@ public class HistoryConfDetails extends Multileve
 }
 });
 dropdownElem.setNullValid(true);
-dropdownElem.getField().add(new 
AjaxFormComponentUpdatingBehavior("onchange") {
+dropdownElem.getField().add(new 
AjaxFormComponentUpdatingBehavior(Constants.ON_CHANGE) {
 
 private static final long serialVersionUID = -1107858522700306810L;
 
diff --git a/pom.xml b/pom.xml
index 092efd6..dca05d0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -463,7 +463,7 @@ under the License.
 2.0.1
 9.8.0
 5.40.2
-20121119-1
+895a9512bb
 2.0.7
 1.0.2
 



[syncope] branch master updated: [SYNCOPE-1431] Fixed Connector and Resource history comparison

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

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


The following commit(s) were added to refs/heads/master by this push:
 new 58976e0  [SYNCOPE-1431] Fixed Connector and Resource history comparison
58976e0 is described below

commit 58976e0280a4e47584d0f9cb8235676c92851d02
Author: skylark17 
AuthorDate: Tue Feb 5 17:24:40 2019 +0100

[SYNCOPE-1431] Fixed Connector and Resource history comparison
---
 .../org/apache/syncope/client/console/panels/HistoryConfDetails.java | 5 +++--
 pom.xml  | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git 
a/client/idm/console/src/main/java/org/apache/syncope/client/console/panels/HistoryConfDetails.java
 
b/client/idm/console/src/main/java/org/apache/syncope/client/console/panels/HistoryConfDetails.java
index 7afb0c6..d5a06f4 100644
--- 
a/client/idm/console/src/main/java/org/apache/syncope/client/console/panels/HistoryConfDetails.java
+++ 
b/client/idm/console/src/main/java/org/apache/syncope/client/console/panels/HistoryConfDetails.java
@@ -27,6 +27,7 @@ import java.util.Map;
 import java.util.stream.Collectors;
 import org.apache.commons.lang3.tuple.Pair;
 import org.apache.syncope.client.console.SyncopeConsoleSession;
+import org.apache.syncope.client.console.commons.Constants;
 import org.apache.syncope.client.console.rest.ConnectorRestClient;
 import org.apache.syncope.client.console.rest.ResourceRestClient;
 import 
org.apache.syncope.client.console.wicket.markup.html.bootstrap.dialog.BaseModal;
@@ -65,7 +66,7 @@ public class HistoryConfDetails extends Multileve
 
 // remove selected conf from list
 this.availableHistoryConfTOs = availableHistoryConfTOs.stream().
-filter(object -> 
object.getKey().equals(selectedHistoryConfTO.getKey())).collect(Collectors.toList());
+filter(object -> 
!object.getKey().equals(selectedHistoryConfTO.getKey())).collect(Collectors.toList());
 this.selectedHistoryConfTO = selectedHistoryConfTO;
 
 // add current conf to list
@@ -193,7 +194,7 @@ public class HistoryConfDetails extends Multileve
 }
 });
 dropdownElem.setNullValid(true);
-dropdownElem.getField().add(new 
AjaxFormComponentUpdatingBehavior("onchange") {
+dropdownElem.getField().add(new 
AjaxFormComponentUpdatingBehavior(Constants.ON_CHANGE) {
 
 private static final long serialVersionUID = -1107858522700306810L;
 
diff --git a/pom.xml b/pom.xml
index 04f9f87..2bdd558 100644
--- a/pom.xml
+++ b/pom.xml
@@ -462,7 +462,7 @@ under the License.
 2.0.1
 9.8.0
 5.41.0
-20121119-1
+895a9512bb
 2.0.7
 1.0.2
 



[syncope] branch 2_1_X updated: [SYNCOPE-1431] Fixed Connector and Resource history comparison

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

skylark17 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 9e70f49  [SYNCOPE-1431] Fixed Connector and Resource history comparison
9e70f49 is described below

commit 9e70f4950d30981a1a85f2c7220a2a9993a3328b
Author: skylark17 
AuthorDate: Tue Feb 5 17:24:40 2019 +0100

[SYNCOPE-1431] Fixed Connector and Resource history comparison
---
 .../org/apache/syncope/client/console/panels/HistoryConfDetails.java | 5 +++--
 pom.xml  | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git 
a/client/console/src/main/java/org/apache/syncope/client/console/panels/HistoryConfDetails.java
 
b/client/console/src/main/java/org/apache/syncope/client/console/panels/HistoryConfDetails.java
index 7afb0c6..d5a06f4 100644
--- 
a/client/console/src/main/java/org/apache/syncope/client/console/panels/HistoryConfDetails.java
+++ 
b/client/console/src/main/java/org/apache/syncope/client/console/panels/HistoryConfDetails.java
@@ -27,6 +27,7 @@ import java.util.Map;
 import java.util.stream.Collectors;
 import org.apache.commons.lang3.tuple.Pair;
 import org.apache.syncope.client.console.SyncopeConsoleSession;
+import org.apache.syncope.client.console.commons.Constants;
 import org.apache.syncope.client.console.rest.ConnectorRestClient;
 import org.apache.syncope.client.console.rest.ResourceRestClient;
 import 
org.apache.syncope.client.console.wicket.markup.html.bootstrap.dialog.BaseModal;
@@ -65,7 +66,7 @@ public class HistoryConfDetails extends Multileve
 
 // remove selected conf from list
 this.availableHistoryConfTOs = availableHistoryConfTOs.stream().
-filter(object -> 
object.getKey().equals(selectedHistoryConfTO.getKey())).collect(Collectors.toList());
+filter(object -> 
!object.getKey().equals(selectedHistoryConfTO.getKey())).collect(Collectors.toList());
 this.selectedHistoryConfTO = selectedHistoryConfTO;
 
 // add current conf to list
@@ -193,7 +194,7 @@ public class HistoryConfDetails extends Multileve
 }
 });
 dropdownElem.setNullValid(true);
-dropdownElem.getField().add(new 
AjaxFormComponentUpdatingBehavior("onchange") {
+dropdownElem.getField().add(new 
AjaxFormComponentUpdatingBehavior(Constants.ON_CHANGE) {
 
 private static final long serialVersionUID = -1107858522700306810L;
 
diff --git a/pom.xml b/pom.xml
index 48d59e9..74a2b54 100644
--- a/pom.xml
+++ b/pom.xml
@@ -458,7 +458,7 @@ under the License.
 2.0.1
 9.8.0
 5.41.0
-20121119-1
+895a9512bb
 2.0.7
 1.0.2
 



[syncope] branch 2_0_X updated: More robust test condition

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

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


The following commit(s) were added to refs/heads/2_0_X by this push:
 new 38a62f2  More robust test condition
38a62f2 is described below

commit 38a62f26311991e6234b540ec258abd0803604eb
Author: Francesco Chicchiriccò 
AuthorDate: Tue Feb 5 10:37:59 2019 +0100

More robust test condition
---
 .../src/test/java/org/apache/syncope/fit/core/UserWorkflowITCase.java| 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/UserWorkflowITCase.java
 
b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/UserWorkflowITCase.java
index 6b1e816..cbbce1f 100644
--- 
a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/UserWorkflowITCase.java
+++ 
b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/UserWorkflowITCase.java
@@ -131,7 +131,6 @@ public class UserWorkflowITCase extends AbstractITCase {
 }
 }));
 
-assertEquals(1, userService3.getForms(new 
WorkflowFormQuery.Builder().build()).getTotalCount());
 form = userService3.claimForm(form.getTaskId());
 assertNotNull(form);
 assertNotNull(form.getTaskId());