gatein SVN: r7988 - portal/trunk/webui/eXo/src/main/java/org/exoplatform/webui/organization.
by do-not-reply@jboss.org
Author: haint
Date: 2011-11-06 21:26:05 -0500 (Sun, 06 Nov 2011)
New Revision: 7988
Modified:
portal/trunk/webui/eXo/src/main/java/org/exoplatform/webui/organization/UIAccountInputSet.java
Log:
GTNPORTAL-2260 Validators are different in User Register screens
Modified: portal/trunk/webui/eXo/src/main/java/org/exoplatform/webui/organization/UIAccountInputSet.java
===================================================================
--- portal/trunk/webui/eXo/src/main/java/org/exoplatform/webui/organization/UIAccountInputSet.java 2011-11-07 01:46:43 UTC (rev 7987)
+++ portal/trunk/webui/eXo/src/main/java/org/exoplatform/webui/organization/UIAccountInputSet.java 2011-11-07 02:26:05 UTC (rev 7988)
@@ -32,9 +32,11 @@
import org.exoplatform.webui.form.validator.EmailAddressValidator;
import org.exoplatform.webui.form.validator.ExpressionValidator;
import org.exoplatform.webui.form.validator.MandatoryValidator;
+import org.exoplatform.webui.form.validator.NaturalLanguageValidator;
import org.exoplatform.webui.form.validator.PasswordStringLengthValidator;
import org.exoplatform.webui.form.validator.ResourceValidator;
import org.exoplatform.webui.form.validator.StringLengthValidator;
+import org.exoplatform.webui.form.validator.UsernameValidator;
/**
* Created by The eXo Platform SARL
@@ -59,18 +61,21 @@
public UIAccountInputSet(String name) throws Exception
{
super(name);
- //setComponentConfig(getClass(), null) ;
addUIFormInput(new UIFormStringInput(USERNAME, "userName", null).addValidator(MandatoryValidator.class)
- .addValidator(StringLengthValidator.class, 3, 30).addValidator(ResourceValidator.class).addValidator(
- ExpressionValidator.class, Utils.USER_NAME_VALIDATOR_REGEX, "ResourceValidator.msg.Invalid-char"));
+ .addValidator(UsernameValidator.class, 3, 30));
+
addUIFormInput(new UIFormStringInput(PASSWORD1X, "password", null).setType(UIFormStringInput.PASSWORD_TYPE)
.addValidator(MandatoryValidator.class).addValidator(PasswordStringLengthValidator.class, 6, 30));
+
addUIFormInput(new UIFormStringInput(PASSWORD2X, "password", null).setType(UIFormStringInput.PASSWORD_TYPE)
.addValidator(MandatoryValidator.class).addValidator(PasswordStringLengthValidator.class, 6, 30));
+
addUIFormInput(new UIFormStringInput("firstName", "firstName", null).addValidator(StringLengthValidator.class, 1,
- 45).addValidator(MandatoryValidator.class));
+ 45).addValidator(MandatoryValidator.class).addValidator(NaturalLanguageValidator.class));
+
addUIFormInput(new UIFormStringInput("lastName", "lastName", null).addValidator(StringLengthValidator.class, 1,
- 45).addValidator(MandatoryValidator.class));
+ 45).addValidator(MandatoryValidator.class).addValidator(NaturalLanguageValidator.class));
+
addUIFormInput(new UIFormStringInput("email", "email", null).addValidator(MandatoryValidator.class).addValidator(
EmailAddressValidator.class));
}
13 years, 1 month
gatein SVN: r7987 - portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal.
by do-not-reply@jboss.org
Author: phuong_vu
Date: 2011-11-06 20:46:43 -0500 (Sun, 06 Nov 2011)
New Revision: 7987
Modified:
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_ja.properties
Log:
GTNPORTAL-2145 Some first name and last name parameters are reversed in Japanese message bundle of UserInfoPortlet
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_ja.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_ja.properties 2011-11-04 20:09:39 UTC (rev 7986)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_ja.properties 2011-11-07 01:46:43 UTC (rev 7987)
@@ -1084,8 +1084,8 @@
UIAccountProfiles.action.Save=\u4fdd\u5b58
UIAccountProfiles.action.Reset=\u30ea\u30bb\u30c3\u30c8
UIAccountProfiles.label.userName=\u30e6\u30fc\u30b6\u30fc\u540d :
-UIAccountProfiles.label.firstName=\u82d7\u5b57 :
-UIAccountProfiles.label.lastName=\u540d\u524d :
+UIAccountProfiles.label.firstName=\u540d\u524d :
+UIAccountProfiles.label.lastName=\u82d7\u5b57 :
UIAccountProfiles.label.email=E\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9 :
UIAccountProfiles.msg.update.success=\u30a2\u30ab\u30a6\u30f3\u30c8\u60c5\u5831\u304c\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u3055\u308c\u307e\u3057\u305f\u3002
UIAccountChangePass.action.Save=\u4fdd\u5b58
@@ -1203,8 +1203,8 @@
################################################################################
UIUserSelector.label.option.userName=\u30e6\u30fc\u30b6\u30fc\u540d
-UIUserSelector.label.option.lastName=\u540d\u524d
-UIUserSelector.label.option.firstName=\u82d7\u5b57
+UIUserSelector.label.option.lastName=\u82d7\u5b57
+UIUserSelector.label.option.firstName=\u540d\u524d
UIUserSelector.label.option.email=E\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9
UIUserSelector.label.group=\u30b0\u30eb\u30fc\u30d7 :
UIUserSelector.label.searchUser=\u691c\u7d22h :
13 years, 1 month
gatein SVN: r7986 - epp/portal/branches.
by do-not-reply@jboss.org
Author: ghjboss
Date: 2011-11-04 16:09:39 -0400 (Fri, 04 Nov 2011)
New Revision: 7986
Added:
epp/portal/branches/EPP_5_1_0_GA_JBEPP-1346/
Log:
create branch for support patch JBEPP-1346
13 years, 1 month
gatein SVN: r7985 - in components/wsrp/trunk: admin-gui and 14 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2011-11-04 15:07:29 -0400 (Fri, 04 Nov 2011)
New Revision: 7985
Modified:
components/wsrp/trunk/admin-gui/pom.xml
components/wsrp/trunk/api/pom.xml
components/wsrp/trunk/common/pom.xml
components/wsrp/trunk/consumer/pom.xml
components/wsrp/trunk/hibernate-impl/pom.xml
components/wsrp/trunk/jcr-impl/pom.xml
components/wsrp/trunk/pom.xml
components/wsrp/trunk/producer/pom.xml
components/wsrp/trunk/test/pom.xml
components/wsrp/trunk/ws-security/jboss5/pom.xml
components/wsrp/trunk/ws-security/pom.xml
components/wsrp/trunk/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
components/wsrp/trunk/ws-security/wss/pom.xml
components/wsrp/trunk/wsrp-producer-war/pom.xml
components/wsrp/trunk/wsrp1-ws/pom.xml
components/wsrp/trunk/wsrp2-ws/pom.xml
Log:
- Changed version to 2.2.0-Alpha01-SNAPSHOT.
Modified: components/wsrp/trunk/admin-gui/pom.xml
===================================================================
--- components/wsrp/trunk/admin-gui/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/admin-gui/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -21,11 +21,12 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-admin-gui</artifactId>
Modified: components/wsrp/trunk/api/pom.xml
===================================================================
--- components/wsrp/trunk/api/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/api/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -1,6 +1,6 @@
<!--
~ JBoss, a division of Red Hat
- ~ Copyright 2010, Red Hat Middleware, LLC, and individual
+ ~ Copyright 2011, Red Hat Middleware, LLC, and individual
~ contributors as indicated by the @authors tag. See the
~ copyright.txt in the distribution for a full listing of
~ individual contributors.
@@ -21,11 +21,12 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-integration-api</artifactId>
Modified: components/wsrp/trunk/common/pom.xml
===================================================================
--- components/wsrp/trunk/common/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/common/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -1,6 +1,6 @@
<!--
~ JBoss, a division of Red Hat
- ~ Copyright 2010, Red Hat Middleware, LLC, and individual
+ ~ Copyright 2011, Red Hat Middleware, LLC, and individual
~ contributors as indicated by the @authors tag. See the
~ copyright.txt in the distribution for a full listing of
~ individual contributors.
@@ -21,11 +21,12 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-common</artifactId>
Modified: components/wsrp/trunk/consumer/pom.xml
===================================================================
--- components/wsrp/trunk/consumer/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/consumer/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -1,6 +1,6 @@
<!--
~ JBoss, a division of Red Hat
- ~ Copyright 2010, Red Hat Middleware, LLC, and individual
+ ~ Copyright 2011, Red Hat Middleware, LLC, and individual
~ contributors as indicated by the @authors tag. See the
~ copyright.txt in the distribution for a full listing of
~ individual contributors.
@@ -21,11 +21,12 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-consumer</artifactId>
Modified: components/wsrp/trunk/hibernate-impl/pom.xml
===================================================================
--- components/wsrp/trunk/hibernate-impl/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/hibernate-impl/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -22,13 +22,14 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
</parent>
<groupId>org.gatein.wsrp</groupId>
Modified: components/wsrp/trunk/jcr-impl/pom.xml
===================================================================
--- components/wsrp/trunk/jcr-impl/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/jcr-impl/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -27,7 +27,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/trunk/pom.xml
===================================================================
--- components/wsrp/trunk/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -37,7 +37,7 @@
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
<packaging>pom</packaging>
Modified: components/wsrp/trunk/producer/pom.xml
===================================================================
--- components/wsrp/trunk/producer/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/producer/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -1,6 +1,6 @@
<!--
~ JBoss, a division of Red Hat
- ~ Copyright 2010, Red Hat Middleware, LLC, and individual
+ ~ Copyright 2011, Red Hat Middleware, LLC, and individual
~ contributors as indicated by the @authors tag. See the
~ copyright.txt in the distribution for a full listing of
~ individual contributors.
@@ -21,11 +21,12 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-lib</artifactId>
Modified: components/wsrp/trunk/test/pom.xml
===================================================================
--- components/wsrp/trunk/test/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/test/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ JBoss, a division of Red Hat
- ~ Copyright 2010, Red Hat Middleware, LLC, and individual
+ ~ Copyright 2011, Red Hat Middleware, LLC, and individual
~ contributors as indicated by the @authors tag. See the
~ copyright.txt in the distribution for a full listing of
~ individual contributors.
@@ -22,11 +22,12 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/trunk/ws-security/jboss5/pom.xml
===================================================================
--- components/wsrp/trunk/ws-security/jboss5/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/ws-security/jboss5/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -1,6 +1,6 @@
<!--
~ JBoss, a division of Red Hat
- ~ Copyright 2010, Red Hat Middleware, LLC, and individual
+ ~ Copyright 2011, Red Hat Middleware, LLC, and individual
~ contributors as indicated by the @authors tag. See the
~ copyright.txt in the distribution for a full listing of
~ individual contributors.
@@ -21,11 +21,12 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss-jboss5</artifactId>
Modified: components/wsrp/trunk/ws-security/pom.xml
===================================================================
--- components/wsrp/trunk/ws-security/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/ws-security/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -21,13 +21,14 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
</parent>
<artifactId>wsrp-wss-parent</artifactId>
Modified: components/wsrp/trunk/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
===================================================================
--- components/wsrp/trunk/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -1,6 +1,6 @@
<!--
~ JBoss, a division of Red Hat
- ~ Copyright 2010, Red Hat Middleware, LLC, and individual
+ ~ Copyright 2011, Red Hat Middleware, LLC, and individual
~ contributors as indicated by the @authors tag. See the
~ copyright.txt in the distribution for a full listing of
~ individual contributors.
@@ -21,11 +21,12 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-jb5wss</artifactId>
Modified: components/wsrp/trunk/ws-security/wss/pom.xml
===================================================================
--- components/wsrp/trunk/ws-security/wss/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/ws-security/wss/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -1,6 +1,6 @@
<!--
~ JBoss, a division of Red Hat
- ~ Copyright 2010, Red Hat Middleware, LLC, and individual
+ ~ Copyright 2011, Red Hat Middleware, LLC, and individual
~ contributors as indicated by the @authors tag. See the
~ copyright.txt in the distribution for a full listing of
~ individual contributors.
@@ -21,11 +21,12 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss</artifactId>
Modified: components/wsrp/trunk/wsrp-producer-war/pom.xml
===================================================================
--- components/wsrp/trunk/wsrp-producer-war/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/wsrp-producer-war/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -22,11 +22,12 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/trunk/wsrp1-ws/pom.xml
===================================================================
--- components/wsrp/trunk/wsrp1-ws/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/wsrp1-ws/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -1,6 +1,6 @@
<!--
~ JBoss, a division of Red Hat
- ~ Copyright 2010, Red Hat Middleware, LLC, and individual
+ ~ Copyright 2011, Red Hat Middleware, LLC, and individual
~ contributors as indicated by the @authors tag. See the
~ copyright.txt in the distribution for a full listing of
~ individual contributors.
@@ -21,11 +21,12 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp1-ws</artifactId>
Modified: components/wsrp/trunk/wsrp2-ws/pom.xml
===================================================================
--- components/wsrp/trunk/wsrp2-ws/pom.xml 2011-11-04 19:05:21 UTC (rev 7984)
+++ components/wsrp/trunk/wsrp2-ws/pom.xml 2011-11-04 19:07:29 UTC (rev 7985)
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ JBoss, a division of Red Hat
- ~ Copyright 2010, Red Hat Middleware, LLC, and individual
+ ~ Copyright 2011, Red Hat Middleware, LLC, and individual
~ contributors as indicated by the @authors tag. See the
~ copyright.txt in the distribution for a full listing of
~ individual contributors.
@@ -22,11 +22,12 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.2.0-Alpha01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp2-ws</artifactId>
13 years, 1 month
gatein SVN: r7984 - components/wsrp/branches.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2011-11-04 15:05:21 -0400 (Fri, 04 Nov 2011)
New Revision: 7984
Added:
components/wsrp/branches/2.1.x/
Log:
- New branch for 2.1.x WSRP line of development.
13 years, 1 month
gatein SVN: r7982 - epp/portal/branches/EPP_5_2_Branch.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-11-04 12:43:36 -0400 (Fri, 04 Nov 2011)
New Revision: 7982
Modified:
epp/portal/branches/EPP_5_2_Branch/pom.xml
Log:
JBEPP-1343 Upgrade WSRP to 2.1.0-EPP520-GA
Modified: epp/portal/branches/EPP_5_2_Branch/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
+++ epp/portal/branches/EPP_5_2_Branch/pom.xml 2011-11-04 16:43:36 UTC (rev 7982)
@@ -53,7 +53,7 @@
<org.gatein.wci.version>2.1.0-GA</org.gatein.wci.version>
<org.gatein.pc.version>2.3.0-GA</org.gatein.pc.version>
<org.picketlink.idm>1.3.0.GA</org.picketlink.idm>
- <org.gatein.wsrp.version>2.1.0-EPP520-Beta08</org.gatein.wsrp.version>
+ <org.gatein.wsrp.version>2.1.0-EPP520-GA</org.gatein.wsrp.version>
<org.gatein.mop.version>1.1.0-GA</org.gatein.mop.version>
<org.gatein.mgmt.version>1.0.0-GA</org.gatein.mgmt.version>
<org.slf4j.version>1.5.8</org.slf4j.version>
13 years, 1 month
gatein SVN: r7981 - in components/wsrp/tags: 2.1.0-EPP520-GA and 15 other directories.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-11-04 12:31:08 -0400 (Fri, 04 Nov 2011)
New Revision: 7981
Added:
components/wsrp/tags/2.1.0-EPP520-GA/
Modified:
components/wsrp/tags/2.1.0-EPP520-GA/admin-gui/pom.xml
components/wsrp/tags/2.1.0-EPP520-GA/api/pom.xml
components/wsrp/tags/2.1.0-EPP520-GA/common/pom.xml
components/wsrp/tags/2.1.0-EPP520-GA/consumer/pom.xml
components/wsrp/tags/2.1.0-EPP520-GA/hibernate-impl/pom.xml
components/wsrp/tags/2.1.0-EPP520-GA/jcr-impl/pom.xml
components/wsrp/tags/2.1.0-EPP520-GA/pom.xml
components/wsrp/tags/2.1.0-EPP520-GA/producer/pom.xml
components/wsrp/tags/2.1.0-EPP520-GA/test/pom.xml
components/wsrp/tags/2.1.0-EPP520-GA/ws-security/jboss5/pom.xml
components/wsrp/tags/2.1.0-EPP520-GA/ws-security/pom.xml
components/wsrp/tags/2.1.0-EPP520-GA/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
components/wsrp/tags/2.1.0-EPP520-GA/ws-security/wss/pom.xml
components/wsrp/tags/2.1.0-EPP520-GA/wsrp-producer-war/pom.xml
components/wsrp/tags/2.1.0-EPP520-GA/wsrp1-ws/pom.xml
components/wsrp/tags/2.1.0-EPP520-GA/wsrp2-ws/pom.xml
Log:
Productized version
Property changes on: components/wsrp/tags/2.1.0-EPP520-GA
___________________________________________________________________
Added: svn:ignore
+ target
.project
.classpath
.settings
.idea
*.iml
Added: svn:mergeinfo
+ /components/wsrp/branches/clustering:7284-7390
Modified: components/wsrp/tags/2.1.0-EPP520-GA/admin-gui/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/admin-gui/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/admin-gui/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-admin-gui</artifactId>
@@ -68,12 +68,12 @@
<dependency>
<groupId>org.jboss.portletbridge</groupId>
<artifactId>portletbridge-api</artifactId>
- <version>2.2.0.FINAL</version>
+ <version>${org.jboss.portletbridge.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.portletbridge</groupId>
<artifactId>portletbridge-impl</artifactId>
- <version>2.2.0.FINAL</version>
+ <version>${org.jboss.portletbridge.version}</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: components/wsrp/tags/2.1.0-EPP520-GA/api/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/api/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/api/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-integration-api</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-GA/common/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/common/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/common/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-common</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-GA/consumer/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/consumer/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/consumer/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-consumer</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-GA/hibernate-impl/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/hibernate-impl/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/hibernate-impl/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
</parent>
<groupId>org.gatein.wsrp</groupId>
Modified: components/wsrp/tags/2.1.0-EPP520-GA/jcr-impl/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/jcr-impl/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/jcr-impl/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -26,7 +26,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/tags/2.1.0-EPP520-GA/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -36,7 +36,7 @@
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
<packaging>pom</packaging>
@@ -47,9 +47,9 @@
</parent>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/wsrp/tags/2.1.0-GA</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wsrp/tags/2.1.0-GA</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/components/wsrp/tags/2.1.0-GA</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/wsrp/tags/2.1.0-...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wsrp/tags/2.1.0-EPP...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/components/wsrp/tags/2.1.0-EPP520-GA</url>
</scm>
<properties>
@@ -60,9 +60,10 @@
<jsf.version>1.2_12</jsf.version>
<javax.xml.ws.version>2.1</javax.xml.ws.version>
<javax.xml.soap.saaj.version>1.3</javax.xml.soap.saaj.version>
- <org.chromattic.version>1.1.0</org.chromattic.version>
+ <org.chromattic.version>1.1.1</org.chromattic.version>
<org.jboss.arquillian.version>1.0.0.Alpha2</org.jboss.arquillian.version>
<org.mockito.version>1.8.5</org.mockito.version>
+ <org.jboss.portletbridge.version>2.2.0.GA.EPP520</org.jboss.portletbridge.version>
</properties>
<organization>
Modified: components/wsrp/tags/2.1.0-EPP520-GA/producer/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/producer/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/producer/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-lib</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-GA/test/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/test/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/test/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/tags/2.1.0-EPP520-GA/ws-security/jboss5/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/ws-security/jboss5/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/ws-security/jboss5/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss-jboss5</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-GA/ws-security/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/ws-security/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/ws-security/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
</parent>
<artifactId>wsrp-wss-parent</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-GA/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-jb5wss</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-GA/ws-security/wss/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/ws-security/wss/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/ws-security/wss/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-GA/wsrp-producer-war/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/wsrp-producer-war/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/wsrp-producer-war/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/tags/2.1.0-EPP520-GA/wsrp1-ws/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/wsrp1-ws/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/wsrp1-ws/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp1-ws</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-GA/wsrp2-ws/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-GA/wsrp2-ws/pom.xml 2011-11-04 15:10:42 UTC (rev 7980)
+++ components/wsrp/tags/2.1.0-EPP520-GA/wsrp2-ws/pom.xml 2011-11-04 16:31:08 UTC (rev 7981)
@@ -26,7 +26,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.0-GA</version>
+ <version>2.1.0-EPP520-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp2-ws</artifactId>
13 years, 1 month
gatein SVN: r7980 - epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/src.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-11-04 11:10:42 -0400 (Fri, 04 Nov 2011)
New Revision: 7980
Modified:
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/src/assemble.xml
Log:
JBEPP-1333 Include gatein-management CLI in packaging
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/src/assemble.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/src/assemble.xml 2011-11-04 12:48:55 UTC (rev 7979)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/src/assemble.xml 2011-11-04 15:10:42 UTC (rev 7980)
@@ -12,8 +12,8 @@
<includes>
<include>*:*:war</include>
</includes>
- <outputDirectory></outputDirectory>
- <unpack>false</unpack>
+ <outputDirectory>${artifact.artifactId}.war</outputDirectory>
+ <unpack>true</unpack>
<outputFileNameMapping>${artifact.artifactId}-${artifact.version}.${artifact.extension}</outputFileNameMapping>
</dependencySet>
</dependencySets>
13 years, 1 month
gatein SVN: r7979 - in portal/trunk: examples/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/jcr and 2 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2011-11-04 08:48:55 -0400 (Fri, 04 Nov 2011)
New Revision: 7979
Modified:
portal/trunk/examples/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/jcr/repository-configuration.xml
portal/trunk/examples/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/jcr/repository-configuration.xml
portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/jcr/repository-configuration.xml
portal/trunk/wsrp-integration/extension-war/src/main/webapp/WEB-INF/conf/wsrp/repository-configuration.xml
Log:
- GTNPORTAL-2258: added default values to workspaces.
Modified: portal/trunk/examples/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/jcr/repository-configuration.xml
===================================================================
--- portal/trunk/examples/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/jcr/repository-configuration.xml 2011-11-04 11:06:21 UTC (rev 7978)
+++ portal/trunk/examples/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/jcr/repository-configuration.xml 2011-11-04 12:48:55 UTC (rev 7979)
@@ -21,7 +21,7 @@
<repository-service default-repository="repository">
<repositories>
- <repository name="repository" system-workspace="${gatein.jcr.workspace.system}" default-workspace="${gatein.jcr.workspace.default}">
+ <repository name="repository" system-workspace="${gatein.jcr.workspace.system:system}" default-workspace="${gatein.jcr.workspace.default:portal-system}">
<security-domain>${portal.container.realm}</security-domain>
<access-control>optional</access-control>
<authentication-policy>org.exoplatform.services.jcr.impl.core.access.JAASAuthenticator</authentication-policy>
Modified: portal/trunk/examples/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/jcr/repository-configuration.xml
===================================================================
--- portal/trunk/examples/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/jcr/repository-configuration.xml 2011-11-04 11:06:21 UTC (rev 7978)
+++ portal/trunk/examples/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/jcr/repository-configuration.xml 2011-11-04 12:48:55 UTC (rev 7979)
@@ -21,7 +21,7 @@
<repository-service default-repository="repository">
<repositories>
- <repository name="repository" system-workspace="${gatein.jcr.workspace.system}" default-workspace="${gatein.jcr.workspace.default}">
+ <repository name="repository" system-workspace="${gatein.jcr.workspace.system:system}" default-workspace="${gatein.jcr.workspace.default:portal-system}">
<security-domain>${portal.container.realm}</security-domain>
<access-control>optional</access-control>
<authentication-policy>org.exoplatform.services.jcr.impl.core.access.JAASAuthenticator</authentication-policy>
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/jcr/repository-configuration.xml
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/jcr/repository-configuration.xml 2011-11-04 11:06:21 UTC (rev 7978)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/jcr/repository-configuration.xml 2011-11-04 12:48:55 UTC (rev 7979)
@@ -21,7 +21,7 @@
<repository-service default-repository="repository">
<repositories>
- <repository name="repository" system-workspace="${gatein.jcr.workspace.system}" default-workspace="${gatein.jcr.workspace.default}">
+ <repository name="repository" system-workspace="${gatein.jcr.workspace.system:system}" default-workspace="${gatein.jcr.workspace.default:portal-system}">
<security-domain>${portal.container.realm}</security-domain>
<access-control>optional</access-control>
<authentication-policy>org.exoplatform.services.jcr.impl.core.access.JAASAuthenticator</authentication-policy>
Modified: portal/trunk/wsrp-integration/extension-war/src/main/webapp/WEB-INF/conf/wsrp/repository-configuration.xml
===================================================================
--- portal/trunk/wsrp-integration/extension-war/src/main/webapp/WEB-INF/conf/wsrp/repository-configuration.xml 2011-11-04 11:06:21 UTC (rev 7978)
+++ portal/trunk/wsrp-integration/extension-war/src/main/webapp/WEB-INF/conf/wsrp/repository-configuration.xml 2011-11-04 12:48:55 UTC (rev 7979)
@@ -23,7 +23,7 @@
<repository-service default-repository="repository">
<repositories>
- <repository name="repository" system-workspace="${gatein.jcr.workspace.system}" default-workspace="${gatein.jcr.workspace.default}">
+ <repository name="repository" system-workspace="${gatein.jcr.workspace.system:system}" default-workspace="${gatein.jcr.workspace.default:portal-system}">
<security-domain>${portal.container.realm}</security-domain>
<access-control>optional</access-control>
<authentication-policy>org.exoplatform.services.jcr.impl.core.access.JAASAuthenticator</authentication-policy>
13 years, 1 month