syncope git commit: Trivial grammatical fixes

2017-07-03 Thread coheigea
Repository: syncope
Updated Branches:
  refs/heads/2_0_X f5fc2f166 -> c102038a9


Trivial grammatical fixes


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

Branch: refs/heads/2_0_X
Commit: c102038a996e82e29b41c4fca73fe0468c64a816
Parents: f5fc2f1
Author: Colm O hEigeartaigh 
Authored: Mon Jul 3 17:35:28 2017 +0100
Committer: Colm O hEigeartaigh 
Committed: Mon Jul 3 17:35:51 2017 +0100

--
 src/main/asciidoc/reference-guide/concepts/realms.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/c102038a/src/main/asciidoc/reference-guide/concepts/realms.adoc
--
diff --git a/src/main/asciidoc/reference-guide/concepts/realms.adoc 
b/src/main/asciidoc/reference-guide/concepts/realms.adoc
index ec9cfbc..2ed169b 100644
--- a/src/main/asciidoc/reference-guide/concepts/realms.adoc
+++ b/src/main/asciidoc/reference-guide/concepts/realms.adoc
@@ -46,8 +46,8 @@ Moreover, this partition allows fine-grained control over 
policy enforcement and
 [[dynamic-realms]]
 .Dynamic Realms
 
-Realms provide a mean to model static containment hierarchies. +
-Such strategy might not be the ideal fit for situations where the set of 
Users, Groups and Any Objects to administer
+Realms provide a means to model static containment hierarchies. +
+This might not be the ideal fit for situations where the set of Users, Groups 
and Any Objects to administer
 cannot be statically defined by containment.
 
 Dynamic Realms can be used to identify Users, Groups and Any Objects according 
to some attributes' value, resource



[CONF] Apache Syncope > Upgrade from 2.0.3 to 2.0.4

2017-07-03 Thread Francesco Chicchiricco (Confluence)
Title: Message Title



 
 
 
 
 
 
 

Francesco Chicchiricco edited a page 
 
 
  
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Upgrade from 2.0.3 to 2.0.4 
 
 
  
 
 
 
 
 
 
 ... 
 
 
  
 
 
 
 Code Block 
 
 
 
 
 
 
 
 
language 
sql 
 
 
  
 
 
 
 
 DELETE FROM AccessToken;  
 
 
 
Please beware that the statement above will invalidate any existing session. 
Source changes 
POM 
In the root pom.xml: 
 
 change parent/version from 2.0.3 to 2.0.4   
 change properties/syncope.version from 2.0.3 to 2.0.4   
 
 Other  
Replace the following files with their 2.0.4 counterparts (re-apply any customization previously made): 

   
 
 
 core/src/main/resources/indexes.xml  
 core/src/main/resources/log4j2.xml  
 core/src/main/resources/persistence.properties  
 core/src/main/resources/provisioning.properties   
 core/src/main/resources/security.properties  
 core/src/main/resources/views.xml  
 core/src/main/resources/domains/Master.properties  
 core/src/main/resources/domains/MasterContent.xml  
 core/src/test/resources/domains/Master.properties  
 core/src/test/resources/domains/MasterContent.xml  
 core/src/test/resources/domains/Two.properties  
 core/src/test/resources/domains/TwoContent.xml  
 console/src/main/resources/console.properties  
all files under enduser/src/main/webapp/app/  
 
 
 
 
  
 
 
  
 
 
 
 
 
 
 
 
 
 

View page
• 
 
 
 
 
 
 

Add comment
• 
 
 
 
 
 
 

Like 
 
 
  
 
 
  
 
 
  
 
 
  
 
 
 
 
 
 
 
 
 
 
Stop watching space
• 
 
 
 
 
 
 
Manage notifications 
 
 
 
 
 
 
 
 
 
 
  
 
 
This message was sent by Atlassian Confluence 5.8.17  
 
 
  
 
 
 
 
 
 
 
 
 




[CONF] Apache Syncope > Upgrade from 2.0.3 to 2.0.4

2017-07-03 Thread Francesco Chicchiricco (Confluence)
Title: Message Title



 
 
 
 
 
 
 

Francesco Chicchiricco edited a page 
 
 
  
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Upgrade from 2.0.3 to 2.0.4 
 
 
  
 
 
 
 
 
 
  
 
 
 
 Table of Contents 
 
 
 
 
 
 
 
 
maxLevel 
2 
 
 
style 
decimal 
 
 
  
 
 
   SSO header change for RESTful services   In Apache Syncope 2.0.3, SSO support was added (  
 
 
 
 JIRA 
 
 
 
 
 
 
 
 
server 
ASF JIRA 
 
 
serverId 
5aa69414-a9e9-3523-82ec-879b028fb15b 
 
 
key 
SYNCOPE-1035 
 
 
  
 
 
 ) for RESTful services by sending a JWT Token using the X-Syncope-Token header, e.g.:   curl -H "X-Syncope-Token: eyJ0e..." http://localhost:8080/syncope/rest/users/self   From Syncope 2.0.4 onwards (  
 
 
 
 JIRA 
 
 
 
 
 
 
 
 
server 
ASF JIRA 
 
 
serverId 
5aa69414-a9e9-3523-82ec-879b028fb15b 
 
 
key 
SYNCOPE-1120 
 
 
  
 
 
 ), this header value is no longer supported. Instead, you must use the standard Authorization Bearer header, e.g.:   curl -H "Authorization: Bearer eyJ0e..." http://localhost:8080/syncope/rest/users/self       JWS signing key reference   In Apache Syncope 2.0.3, the default signing JWS key was referenced in securityContext.xml as follows: "${jwsKey}.bytes". However, this was incorrect and results in the key value with ".bytes" appended to it. In Syncope 2.0.4, the following value should be used instead "#{jwsKey.getBytes()}".       Default key and password checking   In Apache Syncope 2.0.4, a warning is logged if the default JWS key is used to either create/update an access token, or is used to invoke on a RESTful service. A similar warning is logged if the default anonymous key is used to invoke on a RESTful service.   A warning is also logged if the default admin password is detected. If you see these warnings in the logs then it is critical to change the default values.   Before starting   Due to the changes occurred in JWT management, execute the SQL query below on your internal storage:  
 
 
    
 
 
 
 Code Block 
 
 
 
 
 
 
 
 
language 
sql 
 
 
  
 
 
 
 
 
DELETE FROM AccessToken;
  
 
 
 
 Please beware that the statement above will invalidate any existing session.  
 Source changes  
 POM  
 In the root pom.xml:  
 
  change parent/version from 2.0.3 to 2.0.4   
  change properties/syncope.version from 2.0.3 to 2.0.4   
 
 
  
 Other  
  
 Replace the following files with their 2.0.4 counterparts (re-apply any customization previously made):  
  
 
 
 core/src/main/resources/indexes.xml  
 core/src/main/resources/log4j2.xml  
 core/src/main/resources/persistence.properties  
 core/src/main/resources/provisioning.properties     
 core/src/main/resources/security.properties  
 core/src/main/resources/views.xml  
 core/src/main/resources/domains/Master.properties   
 core/src/main/resources/domains/MasterContent.xml  
 core/src/test/resources/domains/Master.properties  
 core/src/test/resources/domains/MasterContent.xml
 core/src/test/resources/domains/Two.properties  
 core/src/test/resources/domains/TwoContent.xml 
 console/src/main/resources/console.properties  
 all files under enduser/src/main/webapp/app/   
 
 
 
 
  
 
 
  
 
 
 
 
 
 
 
 
 
 

View page
• 
 
 
 
 
 
 

Add comment
• 
 
 
 
 
 
 

Like 
 
 
  
 
 
  
 
 
  
 
 
  
 
 
 
 
 
 
 
 
 
 
Stop watching space
• 
 
 
 
 
 
 
Manage notifications 
 
 
 
 
 
 
 
 
 
 
  
 
 
This message was sent by Atlassian Confluence 5.8.17  
 
 
  
 
 
 
 
 
 
 
 
 




[CONF] Apache Syncope > Upgrade from 2.0.3 to 2.0.4

2017-07-03 Thread Francesco Chicchiricco (Confluence)
Title: Message Title



 
 
 
 
 
 
 

Francesco Chicchiricco edited a page 
 
 
  
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Upgrade from 2.0.3 to 2.0.4 
 
 
  
 
 
 
 
 
 
 ... 
 
 
  
 
 
 
 Code Block 
 
 
 
 
 
 
 
 
language 
sql 
 
 
  
 
 
 
 
 DELETE FROM AccessToken;  
 
 
 
Please beware that the statement above will invalidate any existing session. 
Source changes 
POM 
In the root pom.xml: 
 
 change parent/version from 2.0.3 to 2.0.4   
 change properties/syncope.version from 2.0.3 to 2.0.4   
 
  
 Other  
  
 Replace the following files with their 2.0.4 counterparts (re-apply any customization previously made):  
 
  
 
 
 core/src/main/resources/indexes.xml  
 core/src/main/resources/log4j2.xml  
 core/src/main/resources/persistence.properties  
 core/src/main/resources/provisioning.properties     
 core/src/main/resources/security.properties  
 core/src/main/resources/views.xml  
 core/src/main/resources/domains/Master.properties   
 core/src/main/resources/domains/MasterContent.xml  
 core/src/test/resources/domains/Master.properties  
 core/src/test/resources/domains/MasterContent.xml  
 core/src/test/resources/domains/Two.properties  
 core/src/test/resources/domains/TwoContent.xml   
 console/src/main/resources/console.properties  
all files under enduser/src/main/webapp/app/   
 
 
 
 
  
 
 
  
 
 
 
 
 
 
 
 
 
 

View page
• 
 
 
 
 
 
 

Add comment
• 
 
 
 
 
 
 

Like 
 
 
  
 
 
  
 
 
  
 
 
  
 
 
 
 
 
 
 
 
 
 
Stop watching space
• 
 
 
 
 
 
 
Manage notifications 
 
 
 
 
 
 
 
 
 
 
  
 
 
This message was sent by Atlassian Confluence 5.8.17  
 
 
  
 
 
 
 
 
 
 
 
 




[CONF] Apache Syncope > Jazz

2017-07-03 Thread Francesco Chicchiricco (Confluence)
Title: Message Title



 
 
 
 
 
 
 

Francesco Chicchiricco edited a page 
 
 
  
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Jazz 
 
 
  
 
 
 
 
 
 
 ... In Apache Syncope 2.0.4, a warning is logged if the default JWS key is used to either create / update an access token, or is used to invoke on a RESTful service. Similarly, a warning is A similar warning is logged if the default anonymous key is used to invoke on a RESTful service. A warning is also logged if the default admin password or anonymous key are detected. ...  
 
 
  
 
 
 
 
 
 
 
 
 
 

View page
• 
 
 
 
 
 
 

Add comment
• 
 
 
 
 
 
 

Like 
 
 
  
 
 
  
 
 
  
 
 
  
 
 
 
 
 
 
 
 
 
 
Stop watching space
• 
 
 
 
 
 
 
Manage notifications 
 
 
 
 
 
 
 
 
 
 
  
 
 
This message was sent by Atlassian Confluence 5.8.17  
 
 
  
 
 
 
 
 
 
 
 
 




[CONF] Apache Syncope > Jazz

2017-07-03 Thread Francesco Chicchiricco (Confluence)
Title: Message Title



 
 
 
 
 
 
 

Francesco Chicchiricco edited a page 
 
 
  
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Jazz 
 
 
  
 
 
 
 
 
 
 ... More information about the internal authorization process is now available in the Reference Guide.  Dynamic Realms   In addition to static containment provided by Realms, Dynamic Realms can be used to identify Users, Groups and Any Objects according to some attributes' value, resource assignment, group membership or any other condition available, with purpose of granting delegated administration rights.   Flexible Quartz configuration in clusters   The Quartz scheduler is largely used within Syncope Core to schedule the execution of jobs, including pull, push, notification and custom tasks, and reportlets.   By default, Quartz is configured for clustering, where all cluster nodes are equally selectable for processing jobs. Individual cluster nodes can now be disabled for jobs processing.   HikariCP for JDBC connection pool   The internal storage connection pool is now based by default on the high-performance HikariCP.  
 
Issues 
 
Sub-task 
 
[SYNCOPE-808] - Netbeans plugin 
 
Bug 
 
[SYNCOPE-1066] - WADL servlet uses request url to provide wadl 
[SYNCOPE-1069] - Incomplete HA setup instructions 
[SYNCOPE-1070] - Conversion pattern ignored for date, long and double values during propagation 
[SYNCOPE-1071] - The executed notification tasks are not displaying on the console 
[SYNCOPE-1075] - User lastChangeDate attribute is not displayed correctly 
[SYNCOPE-1076] - The console doesn't allow to download the report in various formats 
[SYNCOPE-1078] - Activiti modeler window doesn't open on click 
[SYNCOPE-1079] - Missing toggle panel for the job control widget of the administration console dashboard 
[SYNCOPE-1081] - Console: new toggle panel behavior anomalies 
[SYNCOPE-1082] - Concurrent CRUD random failures with dynamic memberships 
[SYNCOPE-1085] - Custom tasks modal page shouldn't show "Cancel" button 
[SYNCOPE-1089] - Improve provisioning mapping page in order to avoid duplicates in internal attribute name list 
[SYNCOPE-1090] - Error defining clause to search for group owners 
[SYNCOPE-1091] - Error while downloading Jpeg binary attribute content 
[SYNCOPE-1094] - Out of memory error while rendering PDF 
[SYNCOPE-1098] - User edit modal page opening takes long in case of a lot of groups defined 
[SYNCOPE-1099] - Dynamic group membership does not trigger propagation 
[SYNCOPE-1101] - Error showing action icons on Notidfication events managements 
[SYNCOPE-1104] - Missing autocomplete for ConnId object class when defining new provision 
[SYNCOPE-1107] - The installer fails with a NoClassDefFoundError 
[SYNCOPE-1108] - NullPointerException while saving an empty template 
[SYNCOPE-1109] - Installer fails to setup Activiti 
[SYNCOPE-1110] - Error replacing group/auxclass/resource during self-management operation 
[SYNCOPE-] - New any type not shown unders Realms 
[SYNCOPE-1112] - Error searching for user/group/anyobject by providing conditions on attribute with schema type Long 
[SYNCOPE-1114] - Dynamic group information not available during propagation 
[SYNCOPE-1121] - Enduser form customization does not work with empty section in edit mode 
[SYNCOPE-1122] - Enduser must show all attributes when customForm.json has empty section with show=true 
[SYNCOPE-1123] - Enduser UserRequestValidator NPE on custom form empty sections 
[SYNCOPE-1125] - Password on external resource not updated via Enduser 
[SYNCOPE-1127] - Membership attribute values are not shown 
[SYNCOPE-1128] - Content exporter does not sort for internal foreign keys 
[SYNCOPE-1130] - NPE refreshing realm page after realm creation 
[SYNCOPE-1131] - Cannot delete resources owned by realms 
[SYNCOPE-1133] - Search panel used for relationships definition does not work 
[SYNCOPE-1134] - Action menu not working after page refresh 
[SYNCOPE-1135] - Groups list not refreshing after realm change 
 
Improvement 
 
[SYNCOPE-1047] - Replace ActionLinksPanel with TogglePanel 
[SYNCOPE-1053] - Show actual pending modifications during approval 
[SYNCOPE-1067] - More flexible delegated administration model 
[SYNCOPE-1068] - Console: CSRF protection 
[SYNCOPE-1072] - Display or enable add button only to realms were CREATE is owned 
[SYNCOPE-1073] - Hide realm management if no realm entitlement are owned 
[SYNCOPE-1074] - Realm navigator: show only relevant realms for delegated admin 
[SYNCOPE-1083] - ConnInstance location is not normalized 
[SYNCOPE-1084] - Switch to HikariCP for Core's default DataSource definitions 
[SYNCOPE-1086] - Avoid to read whole entities to check ETag 
[SYNCOPE-1087] - Avoid to read input entities if no notification or audit are requested 
[SYNCOPE-1088] - Store authorizations with access tokens 
[SYNCOPE-1093] - Add some feedbacks when linking not existing groups/resources to existing user 
[SYNCOPE-1100] - Provide JWT expiration information to self 
[SYNCOPE-1103] - 

[CONF] Apache Syncope > Jazz

2017-07-03 Thread Francesco Chicchiricco (Confluence)
Title: Message Title



 
 
 
 
 
 
 

Francesco Chicchiricco edited a page 
 
 
  
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Jazz 
 
 
  
 
 
 
 
 
 
 ... 
 
 
 
 Info 
 
 
 
 
 
 
 
 
title 
Upgrade procedure 
 
 
  
 
 
 
 
 Upgrading from 2.0.3? There are some notes about this process.  
 
 
 New and noteworthy  Netbeans Plugin   Besides the consolidated Eclipse IDE Plugin, a new plugin is now available for Apache Netbeans, with similar features.   Elasticsearch-based Search Engine   Especially suitable for large deployments, a new search engine relying on an external Elasticsearch cluster is provided, dramatically improving the overall search performance when the number of managed entities (Users, Groups and Any Objects) raises above tens of thousands.   JWT and security improvements   SSO header change for RESTful services   In Apache Syncope 2.0.3, SSO support was added (Image AddedSYNCOPE-1035 - JWT-based access to REST services CLOSED) for RESTful services by sending a JWT Token using the X-Syncope-Token header, e.g.:  
 
 
 
 Code Block 
 
 
 
 
 
curl -H "X-Syncope-Token: eyJ0e..." http://localhost:8080/syncope/rest/users/self
  
 
 
  From Syncope 2.0.4 onwards (Image AddedSYNCOPE-1120 - Use the standard Bearer Authorization header for JWT tokens CLOSED), this header value is no longer supported. Instead, you must use the standard Authorization Bearer header, e.g.:  
 
 
 
 Code Block 
 
 
 
 
 
curl -H "Authorization: Bearer eyJ0e..." http://localhost:8080/syncope/rest/users/self
  
 
 
  Third Party JWT SSO integration   Besides validating and accepting the JSON Web Tokens generated during the authentication process as sketched above, Apache Syncope can be enabled to cope with tokens generated by third parties.   JWS signing key reference   In Apache Syncope 2.0.3, the default signing JWS key was referenced in securityContext.xml as follows:  
 
 
 
 Code Block 
 
 
 
 
 
"${jwsKey}.bytes"
  
 
 
  However, this was incorrect and results in the key value with ".bytes" appended to it. In Syncope 2.0.4, the following value should be used instead  
 
 
 
 Code Block 
 
 
 
 
 
"#{jwsKey.getBytes()}"
  
 
 
  Default key and password checking   In Apache Syncope 2.0.4, a warning is logged if the default JWS key is used to either create / update an access token, or is used to invoke on a RESTful service. Similarly, a warning is logged if the default admin password or anonymous key are detected.   If you see these warnings in the logs then it is critical to change the default values.   More information about the internal authorization process is now available in the Reference Guide.  
 
Issues 
 
 Sub-task  
 
[SYNCOPE-808] - Netbeans plugin 
 
 Bug  
 
[SYNCOPE-1066] - WADL servlet uses request url to provide wadl 
[SYNCOPE-1069] - Incomplete HA setup instructions 
[SYNCOPE-1070] - Conversion pattern ignored for date, long and double values during propagation 
[SYNCOPE-1071] - The executed notification tasks are not displaying on the console 
[SYNCOPE-1075] - User lastChangeDate attribute is not displayed correctly 
[SYNCOPE-1076] - The console doesn't allow to download the report in various formats 
[SYNCOPE-1078] - Activiti modeler window doesn't open on click 
[SYNCOPE-1079] - Missing toggle panel for the job control widget of the administration console dashboard 
[SYNCOPE-1081] - Console: new toggle panel behavior anomalies 
[SYNCOPE-1082] - Concurrent CRUD random failures with dynamic memberships 
[SYNCOPE-1085] - Custom tasks modal page shouldn't show "Cancel" button 
[SYNCOPE-1089] - Improve provisioning mapping page in order to avoid duplicates in internal attribute name list 
[SYNCOPE-1090] - Error defining clause to search for group owners 
[SYNCOPE-1091] - Error while downloading Jpeg binary attribute content 
[SYNCOPE-1094] - Out of memory error while rendering PDF 
[SYNCOPE-1098] - User edit modal page opening takes long in case of a lot of groups defined 
[SYNCOPE-1099] - Dynamic group membership does not trigger propagation 
[SYNCOPE-1101] - Error showing action icons on Notidfication events managements 
[SYNCOPE-1104] - Missing autocomplete for ConnId object class when defining new provision 
[SYNCOPE-1107] - The installer fails with a NoClassDefFoundError 
[SYNCOPE-1108] - NullPointerException while saving an empty template 
[SYNCOPE-1109] - Installer fails to setup Activiti 
[SYNCOPE-1110] - Error replacing group/auxclass/resource during self-management operation 
[SYNCOPE-] - New any type not shown unders Realms 
[SYNCOPE-1112] - Error searching for user/group/anyobject by providing conditions on attribute with schema type Long 
[SYNCOPE-1114] - Dynamic group information not available during propagation 
[SYNCOPE-1121] - Enduser form customization does not work with empty section in edit mode 
[SYNCOPE-1122] - Enduser must show all attributes when customForm.json has empty section with show=true 
[SYNCOPE-1123] - Enduser UserRequestValidator NPE on custom form empty 

Syncope-2_0_X - Build # 9 - Aborted

2017-07-03 Thread Apache Jenkins Server
The Apache Jenkins build system has built Syncope-2_0_X (build #9)

Status: Aborted

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

Syncope-2_0_X - Build # 8 - Still Failing

2017-07-03 Thread Apache Jenkins Server
The Apache Jenkins build system has built Syncope-2_0_X (build #8)

Status: Still Failing

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

[2/2] syncope git commit: Minor fixes for the release process

2017-07-03 Thread ilgrosso
Minor fixes for the release process


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

Branch: refs/heads/2_0_X
Commit: f5fc2f1661e2c2bcc2862ce678378ade8cc121ce
Parents: 162a67f
Author: Francesco Chicchiriccò 
Authored: Mon Jul 3 11:37:43 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Mon Jul 3 11:37:43 2017 +0200

--
 ide/netbeans/pom.xml  | 4 ++--
 src/site/xdoc/downloads.xml   | 4 ++--
 src/site/xdoc/release-process.xml | 8 
 3 files changed, 8 insertions(+), 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/f5fc2f16/ide/netbeans/pom.xml
--
diff --git a/ide/netbeans/pom.xml b/ide/netbeans/pom.xml
index f136eb3..bab1e91 100644
--- a/ide/netbeans/pom.xml
+++ b/ide/netbeans/pom.xml
@@ -23,8 +23,8 @@ under the License.
 2.0.5-SNAPSHOT
   
 
-  Apache Syncope IDE Netbeans plugin
-  Apache Syncope IDE Netbeans plugin
+  Apache Syncope IDE Netbeans Plugin
+  Apache Syncope IDE Netbeans Plugin
   org.apache.syncope.ide
   syncope-ide-netbeans
 

http://git-wip-us.apache.org/repos/asf/syncope/blob/f5fc2f16/src/site/xdoc/downloads.xml
--
diff --git a/src/site/xdoc/downloads.xml b/src/site/xdoc/downloads.xml
index 91c4edb..7c1084d 100644
--- a/src/site/xdoc/downloads.xml
+++ b/src/site/xdoc/downloads.xml
@@ -148,8 +148,8 @@ under the License.
   
   
 https://www.apache.org/dist/syncope/2.0.4/syncope-ide-netbeans-2.0.4.nbm.asc;>asc
 
-https://www.apache.org/dist/syncope/2.0.4/syncope-ide-netbeans-2.0.4.nbm.zip.md5;>md5
 
-https://www.apache.org/dist/syncope/2.0.4/syncope-ide-netbeans-2.0.4.nbm.zip.sha1;>sha1
+https://www.apache.org/dist/syncope/2.0.4/syncope-ide-netbeans-2.0.4.nbm.md5;>md5
 
+https://www.apache.org/dist/syncope/2.0.4/syncope-ide-netbeans-2.0.4.nbm.sha1;>sha1
   
 
   

http://git-wip-us.apache.org/repos/asf/syncope/blob/f5fc2f16/src/site/xdoc/release-process.xml
--
diff --git a/src/site/xdoc/release-process.xml 
b/src/site/xdoc/release-process.xml
index 107b36a..626480b 100644
--- a/src/site/xdoc/release-process.xml
+++ b/src/site/xdoc/release-process.xml
@@ -288,19 +288,19 @@ cp 
$SYNCOPE_RELEASE_DIR/client/cli/target/syncope-client-cli-*.zip .
 cp $SYNCOPE_RELEASE_DIR/client/cli/target/syncope-client-cli-*.zip.asc .
 cp 
$SYNCOPE_RELEASE_DIR/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/target/org.apache.syncope.ide.eclipse.site-*.zip
 .
 cp 
$SYNCOPE_RELEASE_DIR/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/target/org.apache.syncope.ide.eclipse.site-*.zip.asc
 .
-cp $SYNCOPE_RELEASE_DIR/ide/netbeans/target/syncope-ide-netbeans-*.nbm .
-cp $SYNCOPE_RELEASE_DIR/ide/netbeans/target/syncope-ide-netbeans-*.nbm.asc .
+cp $SYNCOPE_RELEASE_DIR/ide/netbeans/target/nbm/syncope-ide-netbeans-*.nbm .
+cp $SYNCOPE_RELEASE_DIR/ide/netbeans/target/nbm/syncope-ide-netbeans-*.nbm.asc 
.
   
 for file in `find . -type f -iname '*.asc'`
 do
   gpg --verify ${file} 
 done
   
-for file in `find . -name '*.deb' -or -name '*.jar' -or -name '*.zip'`; do
+for file in `find . -name '*.deb' -or -name '*.jar' -or -name '*.zip' -or 
-name '*.nbm'`; do
  openssl md5 $file | sed 's/.*= //' > $file.md5
  openssl sha1 $file | sed 's/.*= //' > $file.sha1
 done
-  
+
 cd ..
 svn add $VERSION
 svn commit -m "Staging artifacts for $VERSION vote"]]>



[1/2] syncope git commit: Updating Eclipse files for next development iteration

2017-07-03 Thread ilgrosso
Repository: syncope
Updated Branches:
  refs/heads/2_0_X 3774b00e3 -> f5fc2f166


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/162a67f0
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/162a67f0
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/162a67f0

Branch: refs/heads/2_0_X
Commit: 162a67f08726314232c953a2792ad797ae36d581
Parents: 3774b00
Author: Francesco Chicchiriccò 
Authored: Mon Jul 3 11:37:05 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Mon Jul 3 11:37:05 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/162a67f0/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 ec9eb69..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.4
+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/162a67f0/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 99bc35a..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.4
+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/162a67f0/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 9b4d072..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.4-SNAPSHOT
+2.0.5-SNAPSHOT
 ../../
   
 

http://git-wip-us.apache.org/repos/asf/syncope/blob/162a67f0/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 e68c260..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.
 -->
 
-   
+   
   





syncope git commit: Upgrading Tomcat

2017-07-03 Thread ilgrosso
Repository: syncope
Updated Branches:
  refs/heads/1_2_X 2365de754 -> 42b1b5f8d


Upgrading Tomcat


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

Branch: refs/heads/1_2_X
Commit: 42b1b5f8dd7902d977226b4ec8e3dd5b51789dbf
Parents: 2365de7
Author: Francesco Chicchiriccò 
Authored: Mon Jul 3 11:19:26 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Mon Jul 3 11:19:26 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/syncope/blob/42b1b5f8/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 1c878e7..1a1eb61 100644
--- a/pom.xml
+++ b/pom.xml
@@ -375,7 +375,7 @@ under the License.
 
 4.3.6
 
-7.0.78
+7.0.79
 
 1.9.2
  



Syncope-2_0_X - Build # 7 - Failure

2017-07-03 Thread Apache Jenkins Server
The Apache Jenkins build system has built Syncope-2_0_X (build #7)

Status: Failure

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

svn commit: r1800605 - in /syncope/site/2.0.4: ./ apidocs/ apidocs/1.2/ apidocs/2.0/ apidocs/2.0/org/ apidocs/2.0/org/apache/ apidocs/2.0/org/apache/syncope/ apidocs/2.0/org/apache/syncope/client/ api

2017-07-03 Thread ilgrosso
Author: ilgrosso
Date: Mon Jul  3 08:43:41 2017
New Revision: 1800605

URL: http://svn.apache.org/viewvc?rev=1800605=rev
Log:
Staging site for release


[This commit notification would consist of 1240 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


Syncope-2_0_X-deploy - Build # 448 - Still Failing

2017-07-03 Thread Apache Jenkins Server
The Apache Jenkins build system has built Syncope-2_0_X-deploy (build #448)

Status: Still Failing

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

svn commit: r20281 - /dev/syncope/2.0.4/

2017-07-03 Thread ilgrosso
Author: ilgrosso
Date: Mon Jul  3 08:26:56 2017
New Revision: 20281

Log:
Staging artifacts for 2.0.4 vote

Added:
dev/syncope/2.0.4/
dev/syncope/2.0.4/apache-syncope-2.0.4.deb   (with props)
dev/syncope/2.0.4/apache-syncope-2.0.4.deb.asc
dev/syncope/2.0.4/apache-syncope-2.0.4.deb.md5
dev/syncope/2.0.4/apache-syncope-2.0.4.deb.sha1
dev/syncope/2.0.4/apache-syncope-console-2.0.4.deb   (with props)
dev/syncope/2.0.4/apache-syncope-console-2.0.4.deb.asc
dev/syncope/2.0.4/apache-syncope-console-2.0.4.deb.md5
dev/syncope/2.0.4/apache-syncope-console-2.0.4.deb.sha1
dev/syncope/2.0.4/apache-syncope-enduser-2.0.4.deb   (with props)
dev/syncope/2.0.4/apache-syncope-enduser-2.0.4.deb.asc
dev/syncope/2.0.4/apache-syncope-enduser-2.0.4.deb.md5
dev/syncope/2.0.4/apache-syncope-enduser-2.0.4.deb.sha1
dev/syncope/2.0.4/org.apache.syncope.ide.eclipse.site-2.0.4.zip   (with 
props)
dev/syncope/2.0.4/org.apache.syncope.ide.eclipse.site-2.0.4.zip.asc
dev/syncope/2.0.4/org.apache.syncope.ide.eclipse.site-2.0.4.zip.md5
dev/syncope/2.0.4/org.apache.syncope.ide.eclipse.site-2.0.4.zip.sha1
dev/syncope/2.0.4/syncope-2.0.4-source-release.zip   (with props)
dev/syncope/2.0.4/syncope-2.0.4-source-release.zip.asc
dev/syncope/2.0.4/syncope-2.0.4-source-release.zip.md5
dev/syncope/2.0.4/syncope-2.0.4-source-release.zip.sha1
dev/syncope/2.0.4/syncope-client-cli-2.0.4.zip   (with props)
dev/syncope/2.0.4/syncope-client-cli-2.0.4.zip.asc
dev/syncope/2.0.4/syncope-client-cli-2.0.4.zip.md5
dev/syncope/2.0.4/syncope-client-cli-2.0.4.zip.sha1
dev/syncope/2.0.4/syncope-ide-netbeans-2.0.4.nbm   (with props)
dev/syncope/2.0.4/syncope-ide-netbeans-2.0.4.nbm.asc
dev/syncope/2.0.4/syncope-ide-netbeans-2.0.4.nbm.md5
dev/syncope/2.0.4/syncope-ide-netbeans-2.0.4.nbm.sha1
dev/syncope/2.0.4/syncope-installer-2.0.4-uber.jar   (with props)
dev/syncope/2.0.4/syncope-installer-2.0.4-uber.jar.asc
dev/syncope/2.0.4/syncope-installer-2.0.4-uber.jar.md5
dev/syncope/2.0.4/syncope-installer-2.0.4-uber.jar.sha1
dev/syncope/2.0.4/syncope-standalone-2.0.4-distribution.zip   (with props)
dev/syncope/2.0.4/syncope-standalone-2.0.4-distribution.zip.asc
dev/syncope/2.0.4/syncope-standalone-2.0.4-distribution.zip.md5
dev/syncope/2.0.4/syncope-standalone-2.0.4-distribution.zip.sha1

Added: dev/syncope/2.0.4/apache-syncope-2.0.4.deb
==
Binary file - no diff available.

Propchange: dev/syncope/2.0.4/apache-syncope-2.0.4.deb
--
svn:mime-type = application/octet-stream

Added: dev/syncope/2.0.4/apache-syncope-2.0.4.deb.asc
==
--- dev/syncope/2.0.4/apache-syncope-2.0.4.deb.asc (added)
+++ dev/syncope/2.0.4/apache-syncope-2.0.4.deb.asc Mon Jul  3 08:26:56 2017
@@ -0,0 +1,11 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v1
+
+iQEcBAABAgAGBQJZWf0VAAoJEGtDE+0nPfKHCH0H/39XfJ5VD2q/Jmq/rADCnVr4
+UX0kZSXISR0N2c5GNBfTdyPaxLIQHWSaCjyaWSYOj0MydGtw96Ih9kqtpzkNvcHb
+yirI2jocJDHZKSJHRla2rxxkwFxnwdVL/ojfyI1GWQ8/JETXqwu/3mHw5dd/sOrY
+Z0le5ci4yQhcLhc+Iw4hwuLG9b9+SuTMLeM0jQApJvvB03/r76wpj9wHVWl05oAi
+oHGEpSJwsY6vJ0tds+Ny7mb/ERu2+uwqBnOV52lt7dFftBDS+5MwM8OdA5MEmr5m
+zZl55+gM5gBtapBPaonQgujGTYPby1IQnMLrQIj+RqVvQhT2SqjBSq08+/QMeqo=
+=NTqr
+-END PGP SIGNATURE-

Added: dev/syncope/2.0.4/apache-syncope-2.0.4.deb.md5
==
--- dev/syncope/2.0.4/apache-syncope-2.0.4.deb.md5 (added)
+++ dev/syncope/2.0.4/apache-syncope-2.0.4.deb.md5 Mon Jul  3 08:26:56 2017
@@ -0,0 +1 @@
+2dd1559c476452673f7aad0b150b552b

Added: dev/syncope/2.0.4/apache-syncope-2.0.4.deb.sha1
==
--- dev/syncope/2.0.4/apache-syncope-2.0.4.deb.sha1 (added)
+++ dev/syncope/2.0.4/apache-syncope-2.0.4.deb.sha1 Mon Jul  3 08:26:56 2017
@@ -0,0 +1 @@
+1bcd7ffa9e135871c42ce04b9455be3a93a0bbea

Added: dev/syncope/2.0.4/apache-syncope-console-2.0.4.deb
==
Binary file - no diff available.

Propchange: dev/syncope/2.0.4/apache-syncope-console-2.0.4.deb
--
svn:mime-type = application/octet-stream

Added: dev/syncope/2.0.4/apache-syncope-console-2.0.4.deb.asc
==
--- dev/syncope/2.0.4/apache-syncope-console-2.0.4.deb.asc (added)
+++ dev/syncope/2.0.4/apache-syncope-console-2.0.4.deb.asc Mon Jul  3 08:26:56 
2017
@@ -0,0 +1,11 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v1
+
+iQEcBAABAgAGBQJZWf0WAAoJEGtDE+0nPfKHS9oH/0KrZCAVrJddKMeOcWOBd/7K

[syncope] Git Push Summary

2017-07-03 Thread ilgrosso
Repository: syncope
Updated Tags:  refs/tags/syncope-2.0.4 [created] 2ba8b5c4a


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

2017-07-03 Thread ilgrosso
Repository: syncope
Updated Branches:
  refs/heads/2_0_X a1704529e -> 11103e3d3


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


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

Branch: refs/heads/2_0_X
Commit: 11103e3d322130ff6ff32a30681327f03abd191c
Parents: a170452
Author: Francesco Chicchiriccò 
Authored: Mon Jul 3 10:00:01 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Mon Jul 3 10:00:01 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 +-
 

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

2017-07-03 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/a1704529
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/a1704529
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/a1704529

Branch: refs/heads/2_0_X
Commit: a1704529ec5a5b405b8fd20d0bbbdd29f1474bf6
Parents: dce8918
Author: Francesco Chicchiriccò 
Authored: Mon Jul 3 09:53:46 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Mon Jul 3 09:53:46 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/a1704529/src/site/xdoc/downloads.xml
--
diff --git a/src/site/xdoc/downloads.xml b/src/site/xdoc/downloads.xml
index b9d8651..91c4edb 100644
--- a/src/site/xdoc/downloads.xml
+++ b/src/site/xdoc/downloads.xml
@@ -49,8 +49,8 @@ under the License.
 
   
 
-  
-Release date: April 15th 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.3/syncope-2.0.3-source-release.zip;>syncope-2.0.3-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.3/syncope-2.0.3-source-release.zip.asc;>asc
 
-https://www.apache.org/dist/syncope/2.0.3/syncope-2.0.3-source-release.zip.md5;>md5
 
-https://www.apache.org/dist/syncope/2.0.3/syncope-2.0.3-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.3/syncope-standalone-2.0.3-distribution.zip;>syncope-standalone-2.0.3-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.3/syncope-standalone-2.0.3-distribution.zip.asc;>asc
 
-https://www.apache.org/dist/syncope/2.0.3/syncope-standalone-2.0.3-distribution.zip.md5;>md5
 
-https://www.apache.org/dist/syncope/2.0.3/syncope-standalone-2.0.3-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.3/apache-syncope-2.0.3.deb;>apache-syncope-2.0.3.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.3/apache-syncope-2.0.3.deb.asc;>asc
 
-https://www.apache.org/dist/syncope/2.0.3/apache-syncope-2.0.3.deb.md5;>md5
 
-https://www.apache.org/dist/syncope/2.0.3/apache-syncope-2.0.3.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.3/apache-syncope-console-2.0.3.deb;>apache-syncope-console-2.0.3.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.3/apache-syncope-console-2.0.3.deb.asc;>asc
 
-https://www.apache.org/dist/syncope/2.0.3/apache-syncope-console-2.0.3.deb.md5;>md5
 
- 

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

2017-07-03 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/dce8918e
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/dce8918e
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/dce8918e

Branch: refs/heads/2_0_X
Commit: dce8918ec27e040fc65f1cf726704dc41edb082e
Parents: 41735a3
Author: Francesco Chicchiriccò 
Authored: Mon Jul 3 09:52:30 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Mon Jul 3 09:52:30 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/dce8918e/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 5b80b04..ec9eb69 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.4.qualifier
+Bundle-Version: 2.0.4
 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/dce8918e/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 bc6dfcc..99bc35a 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.4.qualifier
+Bundle-Version: 2.0.4
 Bundle-ActivationPolicy: lazy
 Bundle-Vendor: 
 Bundle-RequiredExecutionEnvironment: J2SE-1.5

http://git-wip-us.apache.org/repos/asf/syncope/blob/dce8918e/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 f45cdd9..e68c260 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-07-03 Thread ilgrosso
Repository: syncope
Updated Branches:
  refs/heads/2_0_X a28a77043 -> a1704529e


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/41735a38
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/41735a38
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/41735a38

Branch: refs/heads/2_0_X
Commit: 41735a38f882d92844dc289d614476911b993aef
Parents: a28a770
Author: Francesco Chicchiriccò 
Authored: Mon Jul 3 09:51:39 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Mon Jul 3 09:51:39 2017 +0200

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


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

 
+Release Notes - Syncope - Version 2.0.4
+
+
+** Sub-task
+* [SYNCOPE-808] - Netbeans plugin
+
+** Bug
+* [SYNCOPE-1066] - WADL servlet uses request url to provide wadl
+* [SYNCOPE-1069] - Incomplete HA setup instructions
+* [SYNCOPE-1070] - Conversion pattern ignored for date, long and double 
values during propagation
+* [SYNCOPE-1071] - The executed notification tasks are not displaying on 
the console
+* [SYNCOPE-1075] - User lastChangeDate attribute is not displayed correctly
+* [SYNCOPE-1076] - The console doesn't allow to download the report in 
various formats
+* [SYNCOPE-1078] - Activiti modeler window doesn't open on click
+* [SYNCOPE-1079] - Missing toggle panel for the job control widget of the 
administration console dashboard
+* [SYNCOPE-1081] - Console: new toggle panel behavior anomalies
+* [SYNCOPE-1082] - Concurrent CRUD random failures with dynamic memberships
+* [SYNCOPE-1085] - Custom tasks modal page shouldn't show "Cancel" button
+* [SYNCOPE-1089] - Improve provisioning mapping page in order to avoid 
duplicates in internal attribute name list
+* [SYNCOPE-1090] - Error defining clause to search for group owners
+* [SYNCOPE-1091] - Error while downloading Jpeg binary attribute content
+* [SYNCOPE-1094] - Out of memory error while rendering PDF
+* [SYNCOPE-1098] - User edit modal page opening takes long in case of a 
lot of groups defined
+* [SYNCOPE-1099] - Dynamic group membership does not trigger propagation
+* [SYNCOPE-1101] - Error showing action icons on Notidfication events 
managements
+* [SYNCOPE-1104] - Missing autocomplete for ConnId object class when 
defining new provision
+* [SYNCOPE-1107] - The installer fails with a NoClassDefFoundError
+* [SYNCOPE-1108] - NullPointerException while saving an empty template
+* [SYNCOPE-1109] - Installer fails to setup Activiti
+* [SYNCOPE-1110] - Error replacing group/auxclass/resource during 
self-management operation
+* [SYNCOPE-] - New any type not shown unders Realms
+* [SYNCOPE-1112] - Error searching for user/group/anyobject by providing 
conditions on attribute with schema type Long
+* [SYNCOPE-1114] - Dynamic group information not available during 
propagation
+* [SYNCOPE-1121] - Enduser form customization does not work with empty 
section in edit mode
+* [SYNCOPE-1122] - Enduser must show all attributes when customForm.json 
has empty section with show=true
+* [SYNCOPE-1123] - Enduser UserRequestValidator NPE on custom form empty 
sections
+* [SYNCOPE-1125] - Password on external resource not updated via Enduser
+* [SYNCOPE-1127] - Membership attribute values are not shown
+* [SYNCOPE-1128] - Content exporter does not sort for internal foreign keys
+* [SYNCOPE-1130] - NPE refreshing realm page after realm creation
+* [SYNCOPE-1131] - Cannot delete resources owned by realms
+* [SYNCOPE-1133] - Search panel used for relationships definition does not 
work
+* [SYNCOPE-1134] - Action menu not working after page refresh
+* [SYNCOPE-1135] - Groups list not refreshing after realm change
+
+** Improvement
+* [SYNCOPE-1047] - Replace ActionLinksPanel with TogglePanel
+* [SYNCOPE-1053] - Show actual pending modifications during approval
+* [SYNCOPE-1067] - More flexible delegated administration model
+* [SYNCOPE-1068] - Console: CSRF protection
+* [SYNCOPE-1072] - Display or enable add button only to realms were CREATE 
is owned
+* [SYNCOPE-1073] - Hide 

[2/2] syncope git commit: Upgrading Elasticsearch and Lodash

2017-07-03 Thread ilgrosso
Upgrading Elasticsearch and Lodash


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

Branch: refs/heads/master
Commit: 57c4c7a194b9e5ae1b206cdc6b36bb9282ab0b7e
Parents: a8fe4b7
Author: Francesco Chicchiriccò 
Authored: Mon Jul 3 08:54:44 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Mon Jul 3 08:54:57 2017 +0200

--
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/57c4c7a1/pom.xml
--
diff --git a/pom.xml b/pom.xml
index d9ee1fb..b224c5a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -379,7 +379,7 @@ under the License.
 1.7.25
 3.3.0
 
-5.4.2
+5.4.3
 
 2.8.2
 3.3.6
@@ -437,7 +437,7 @@ under the License.
 2.15.1
 
 0.2.1
-4.15.0
+4.17.4
 2014.2.716
 3.4.8
 0.0.2



[1/2] syncope git commit: Upgrading Elasticsearch and Lodash

2017-07-03 Thread ilgrosso
Repository: syncope
Updated Branches:
  refs/heads/2_0_X 89e48867c -> a28a77043
  refs/heads/master a8fe4b787 -> 57c4c7a19


Upgrading Elasticsearch and Lodash


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

Branch: refs/heads/2_0_X
Commit: a28a77043dd49fcfeece6b19c7a6749f071d4b07
Parents: 89e4886
Author: Francesco Chicchiriccò 
Authored: Mon Jul 3 08:54:44 2017 +0200
Committer: Francesco Chicchiriccò 
Committed: Mon Jul 3 08:54:44 2017 +0200

--
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/a28a7704/pom.xml
--
diff --git a/pom.xml b/pom.xml
index e523e0d..b85df14 100644
--- a/pom.xml
+++ b/pom.xml
@@ -380,7 +380,7 @@ under the License.
 1.7.25
 3.3.0
 
-5.4.2
+5.4.3
 
 2.8.2
 3.3.6
@@ -439,7 +439,7 @@ under the License.
 2.15.1
 
 0.2.1
-4.15.0
+4.17.4
 2014.2.716
 3.4.8
 0.0.2