[exo-jcr-commits] exo-jcr SVN: r5765 - in ws/branches: 2.2.6-GA-JBAS7 and 7 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Sat Mar 3 02:54:46 EST 2012


Author: tolusha
Date: 2012-03-03 02:54:46 -0500 (Sat, 03 Mar 2012)
New Revision: 5765

Added:
   ws/branches/2.2.6-GA-JBAS7/
   ws/branches/2.2.6-GA-JBAS7/exo.ws.commons/pom.xml
   ws/branches/2.2.6-GA-JBAS7/exo.ws.frameworks.json/pom.xml
   ws/branches/2.2.6-GA-JBAS7/exo.ws.frameworks.servlet/pom.xml
   ws/branches/2.2.6-GA-JBAS7/exo.ws.rest.core/pom.xml
   ws/branches/2.2.6-GA-JBAS7/exo.ws.rest.ext/pom.xml
   ws/branches/2.2.6-GA-JBAS7/exo.ws.testframework/pom.xml
   ws/branches/2.2.6-GA-JBAS7/packaging/module/pom.xml
   ws/branches/2.2.6-GA-JBAS7/pom.xml
Removed:
   ws/branches/2.2.6-GA-JBAS7/exo.ws.commons/pom.xml
   ws/branches/2.2.6-GA-JBAS7/exo.ws.frameworks.json/pom.xml
   ws/branches/2.2.6-GA-JBAS7/exo.ws.frameworks.servlet/pom.xml
   ws/branches/2.2.6-GA-JBAS7/exo.ws.rest.core/pom.xml
   ws/branches/2.2.6-GA-JBAS7/exo.ws.rest.ext/pom.xml
   ws/branches/2.2.6-GA-JBAS7/exo.ws.testframework/pom.xml
   ws/branches/2.2.6-GA-JBAS7/packaging/module/pom.xml
   ws/branches/2.2.6-GA-JBAS7/pom.xml
Log:
[maven-release-plugin]  copy for branch 2.2.6-GA-JBAS7

Deleted: ws/branches/2.2.6-GA-JBAS7/exo.ws.commons/pom.xml
===================================================================
--- ws/tags/2.2.6-GA/exo.ws.commons/pom.xml	2012-03-03 07:52:46 UTC (rev 5763)
+++ ws/branches/2.2.6-GA-JBAS7/exo.ws.commons/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -1,103 +0,0 @@
-<!--
-
-    Copyright (C) 2009 eXo Platform SAS.
-
-    This is free software; you can redistribute it and/or modify it
-    under the terms of the GNU Lesser General Public License as
-    published by the Free Software Foundation; either version 2.1 of
-    the License, or (at your option) any later version.
-
-    This software is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-    Lesser General Public License for more details.
-
-    You should have received a copy of the GNU Lesser General Public
-    License along with this software; if not, write to the Free
-    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-    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">
-
-   <modelVersion>4.0.0</modelVersion>
-
-   <parent>
-      <groupId>org.exoplatform.ws</groupId>
-      <artifactId>ws-parent</artifactId>
-      <version>2.2.6-GA</version>
-   </parent>
-
-   <artifactId>exo.ws.commons</artifactId>
-
-   <name>eXo WS :: Commons Utils</name>
-
-   <dependencies>
-      <dependency>
-         <groupId>org.exoplatform.kernel</groupId>
-         <artifactId>exo.kernel.commons</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>org.exoplatform.kernel</groupId>
-         <artifactId>exo.kernel.commons.test</artifactId>
-      </dependency>
-      <dependency>
-        <groupId>xpp3</groupId>
-        <artifactId>xpp3</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>junit</groupId>
-         <artifactId>junit</artifactId>
-         <scope>test</scope>
-      </dependency>
-   </dependencies>
-
-   <build>
-      <plugins>
-         <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-               <argLine>${env.MAVEN_OPTS} -Djava.security.manager=org.exoplatform.commons.test.TestSecurityManager -Djava.security.policy=${project.build.directory}/test-classes/test.policy</argLine>
-            </configuration>
-         </plugin>
-         <plugin>
-            <artifactId>maven-antrun-plugin</artifactId>
-            <executions>
-               <execution>
-                  <id>prepare-test-policy</id>
-                  <phase>process-test-resources</phase>
-                  <configuration>
-                     <tasks>
-                        <echo>Creating Access Policy for tests</echo>
-                        <makeurl file="${settings.localRepository}" property="localRepositoryURL" />
-                        <makeurl file="${project.build.outputDirectory}" property="outputDirectoryURL" />
-                        <makeurl file="${project.build.testOutputDirectory}" property="testOutputDirectoryURL" />
-                        <copy todir="${project.build.testOutputDirectory}" overwrite="true">
-                           <fileset dir="${project.basedir}/src/test/resources/">
-                              <include name="test.policy" />
-                           </fileset>
-                           <filterset>
-                              <filter token="MAVEN_REPO" value="${localRepositoryURL}" />
-                              <filter token="MAIN_CLASSES" value="${outputDirectoryURL}" />
-                              <filter token="TEST_CLASSES" value="${testOutputDirectoryURL}" />
-                           </filterset>
-                        </copy>
-                     </tasks>
-                  </configuration>
-                  <goals>
-                     <goal>run</goal>
-                  </goals>
-               </execution>
-            </executions>
-            <dependencies>
-               <dependency>
-                  <groupId>ant</groupId>
-                  <artifactId>ant-optional</artifactId>
-                  <version>1.5.3-1</version>
-               </dependency>
-            </dependencies>
-         </plugin>
-      </plugins>
-   </build>
-</project>

Copied: ws/branches/2.2.6-GA-JBAS7/exo.ws.commons/pom.xml (from rev 5764, ws/tags/2.2.6-GA/exo.ws.commons/pom.xml)
===================================================================
--- ws/branches/2.2.6-GA-JBAS7/exo.ws.commons/pom.xml	                        (rev 0)
+++ ws/branches/2.2.6-GA-JBAS7/exo.ws.commons/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -0,0 +1,103 @@
+<!--
+
+    Copyright (C) 2009 eXo Platform SAS.
+
+    This is free software; you can redistribute it and/or modify it
+    under the terms of the GNU Lesser General Public License as
+    published by the Free Software Foundation; either version 2.1 of
+    the License, or (at your option) any later version.
+
+    This software is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this software; if not, write to the Free
+    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+    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">
+
+   <modelVersion>4.0.0</modelVersion>
+
+   <parent>
+      <groupId>org.exoplatform.ws</groupId>
+      <artifactId>ws-parent</artifactId>
+      <version>2.2.6-GA-JBAS7-SNAPSHOT</version>
+   </parent>
+
+   <artifactId>exo.ws.commons</artifactId>
+
+   <name>eXo WS :: Commons Utils</name>
+
+   <dependencies>
+      <dependency>
+         <groupId>org.exoplatform.kernel</groupId>
+         <artifactId>exo.kernel.commons</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.exoplatform.kernel</groupId>
+         <artifactId>exo.kernel.commons.test</artifactId>
+      </dependency>
+      <dependency>
+        <groupId>xpp3</groupId>
+        <artifactId>xpp3</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>junit</groupId>
+         <artifactId>junit</artifactId>
+         <scope>test</scope>
+      </dependency>
+   </dependencies>
+
+   <build>
+      <plugins>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+               <argLine>${env.MAVEN_OPTS} -Djava.security.manager=org.exoplatform.commons.test.TestSecurityManager -Djava.security.policy=${project.build.directory}/test-classes/test.policy</argLine>
+            </configuration>
+         </plugin>
+         <plugin>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <executions>
+               <execution>
+                  <id>prepare-test-policy</id>
+                  <phase>process-test-resources</phase>
+                  <configuration>
+                     <tasks>
+                        <echo>Creating Access Policy for tests</echo>
+                        <makeurl file="${settings.localRepository}" property="localRepositoryURL" />
+                        <makeurl file="${project.build.outputDirectory}" property="outputDirectoryURL" />
+                        <makeurl file="${project.build.testOutputDirectory}" property="testOutputDirectoryURL" />
+                        <copy todir="${project.build.testOutputDirectory}" overwrite="true">
+                           <fileset dir="${project.basedir}/src/test/resources/">
+                              <include name="test.policy" />
+                           </fileset>
+                           <filterset>
+                              <filter token="MAVEN_REPO" value="${localRepositoryURL}" />
+                              <filter token="MAIN_CLASSES" value="${outputDirectoryURL}" />
+                              <filter token="TEST_CLASSES" value="${testOutputDirectoryURL}" />
+                           </filterset>
+                        </copy>
+                     </tasks>
+                  </configuration>
+                  <goals>
+                     <goal>run</goal>
+                  </goals>
+               </execution>
+            </executions>
+            <dependencies>
+               <dependency>
+                  <groupId>ant</groupId>
+                  <artifactId>ant-optional</artifactId>
+                  <version>1.5.3-1</version>
+               </dependency>
+            </dependencies>
+         </plugin>
+      </plugins>
+   </build>
+</project>

Deleted: ws/branches/2.2.6-GA-JBAS7/exo.ws.frameworks.json/pom.xml
===================================================================
--- ws/tags/2.2.6-GA/exo.ws.frameworks.json/pom.xml	2012-03-03 07:52:46 UTC (rev 5763)
+++ ws/branches/2.2.6-GA-JBAS7/exo.ws.frameworks.json/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -1,115 +0,0 @@
-<!--
-
-    Copyright (C) 2009 eXo Platform SAS.
-
-    This is free software; you can redistribute it and/or modify it
-    under the terms of the GNU Lesser General Public License as
-    published by the Free Software Foundation; either version 2.1 of
-    the License, or (at your option) any later version.
-
-    This software is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-    Lesser General Public License for more details.
-
-    You should have received a copy of the GNU Lesser General Public
-    License along with this software; if not, write to the Free
-    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-    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">
-
-   <modelVersion>4.0.0</modelVersion>
-
-   <parent>
-      <groupId>org.exoplatform.ws</groupId>
-      <artifactId>ws-parent</artifactId>
-      <version>2.2.6-GA</version>
-   </parent>
-
-   <artifactId>exo.ws.frameworks.json</artifactId>
-
-   <name>eXo WS :: Framework :: JSON</name>
-   <description>eXo Java Bean to JSON Transformation</description>
-
-   <dependencies>
-      <dependency>
-         <groupId>junit</groupId>
-         <artifactId>junit</artifactId>
-         <scope>test</scope>
-      </dependency>
-      <dependency>
-         <groupId>org.codehaus.groovy</groupId>
-         <artifactId>groovy-all</artifactId>
-         <scope>test</scope>
-      </dependency>
-      <dependency>
-         <groupId>org.exoplatform.kernel</groupId>
-         <artifactId>exo.kernel.commons.test</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>org.exoplatform.kernel</groupId>
-         <artifactId>exo.kernel.commons</artifactId>
-      </dependency>
-   </dependencies>
-
-   <build>
-      <testResources>
-         <testResource>
-            <directory>src/test/resources</directory>
-            <includes>
-               <include>**/*.json</include>
-               <include>**/*.txt</include>
-               <include>**/*.groovy</include>
-            </includes>
-         </testResource>
-      </testResources>
-      <plugins>
-         <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-               <argLine>${env.MAVEN_OPTS} -Djava.security.manager=org.exoplatform.commons.test.TestSecurityManager -Djava.security.policy=${project.build.directory}/test-classes/test.policy</argLine>
-            </configuration>
-         </plugin>
-         <plugin>
-            <artifactId>maven-antrun-plugin</artifactId>
-            <executions>
-               <execution>
-                  <id>prepare-test-policy</id>
-                  <phase>process-test-resources</phase>
-                  <configuration>
-                     <tasks>
-                        <echo>Creating Access Policy for tests</echo>
-                        <makeurl file="${settings.localRepository}" property="localRepositoryURL" />
-                        <makeurl file="${project.build.outputDirectory}" property="outputDirectoryURL" />
-                        <makeurl file="${project.build.testOutputDirectory}" property="testOutputDirectoryURL" />
-                        <copy todir="${project.build.testOutputDirectory}" overwrite="true">
-                           <fileset dir="${project.basedir}/src/test/resources/">
-                              <include name="test.policy" />
-                           </fileset>
-                           <filterset>
-                              <filter token="MAVEN_REPO" value="${localRepositoryURL}" />
-                              <filter token="MAIN_CLASSES" value="${outputDirectoryURL}" />
-                              <filter token="TEST_CLASSES" value="${testOutputDirectoryURL}" />
-                           </filterset>
-                        </copy>
-                     </tasks>
-                  </configuration>
-                  <goals>
-                     <goal>run</goal>
-                  </goals>
-               </execution>
-            </executions>
-            <dependencies>
-               <dependency>
-                  <groupId>ant</groupId>
-                  <artifactId>ant-optional</artifactId>
-                  <version>1.5.3-1</version>
-               </dependency>
-            </dependencies>
-         </plugin>
-      </plugins>
-   </build>
-</project>

Copied: ws/branches/2.2.6-GA-JBAS7/exo.ws.frameworks.json/pom.xml (from rev 5764, ws/tags/2.2.6-GA/exo.ws.frameworks.json/pom.xml)
===================================================================
--- ws/branches/2.2.6-GA-JBAS7/exo.ws.frameworks.json/pom.xml	                        (rev 0)
+++ ws/branches/2.2.6-GA-JBAS7/exo.ws.frameworks.json/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -0,0 +1,115 @@
+<!--
+
+    Copyright (C) 2009 eXo Platform SAS.
+
+    This is free software; you can redistribute it and/or modify it
+    under the terms of the GNU Lesser General Public License as
+    published by the Free Software Foundation; either version 2.1 of
+    the License, or (at your option) any later version.
+
+    This software is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this software; if not, write to the Free
+    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+    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">
+
+   <modelVersion>4.0.0</modelVersion>
+
+   <parent>
+      <groupId>org.exoplatform.ws</groupId>
+      <artifactId>ws-parent</artifactId>
+      <version>2.2.6-GA-JBAS7-SNAPSHOT</version>
+   </parent>
+
+   <artifactId>exo.ws.frameworks.json</artifactId>
+
+   <name>eXo WS :: Framework :: JSON</name>
+   <description>eXo Java Bean to JSON Transformation</description>
+
+   <dependencies>
+      <dependency>
+         <groupId>junit</groupId>
+         <artifactId>junit</artifactId>
+         <scope>test</scope>
+      </dependency>
+      <dependency>
+         <groupId>org.codehaus.groovy</groupId>
+         <artifactId>groovy-all</artifactId>
+         <scope>test</scope>
+      </dependency>
+      <dependency>
+         <groupId>org.exoplatform.kernel</groupId>
+         <artifactId>exo.kernel.commons.test</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.exoplatform.kernel</groupId>
+         <artifactId>exo.kernel.commons</artifactId>
+      </dependency>
+   </dependencies>
+
+   <build>
+      <testResources>
+         <testResource>
+            <directory>src/test/resources</directory>
+            <includes>
+               <include>**/*.json</include>
+               <include>**/*.txt</include>
+               <include>**/*.groovy</include>
+            </includes>
+         </testResource>
+      </testResources>
+      <plugins>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+               <argLine>${env.MAVEN_OPTS} -Djava.security.manager=org.exoplatform.commons.test.TestSecurityManager -Djava.security.policy=${project.build.directory}/test-classes/test.policy</argLine>
+            </configuration>
+         </plugin>
+         <plugin>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <executions>
+               <execution>
+                  <id>prepare-test-policy</id>
+                  <phase>process-test-resources</phase>
+                  <configuration>
+                     <tasks>
+                        <echo>Creating Access Policy for tests</echo>
+                        <makeurl file="${settings.localRepository}" property="localRepositoryURL" />
+                        <makeurl file="${project.build.outputDirectory}" property="outputDirectoryURL" />
+                        <makeurl file="${project.build.testOutputDirectory}" property="testOutputDirectoryURL" />
+                        <copy todir="${project.build.testOutputDirectory}" overwrite="true">
+                           <fileset dir="${project.basedir}/src/test/resources/">
+                              <include name="test.policy" />
+                           </fileset>
+                           <filterset>
+                              <filter token="MAVEN_REPO" value="${localRepositoryURL}" />
+                              <filter token="MAIN_CLASSES" value="${outputDirectoryURL}" />
+                              <filter token="TEST_CLASSES" value="${testOutputDirectoryURL}" />
+                           </filterset>
+                        </copy>
+                     </tasks>
+                  </configuration>
+                  <goals>
+                     <goal>run</goal>
+                  </goals>
+               </execution>
+            </executions>
+            <dependencies>
+               <dependency>
+                  <groupId>ant</groupId>
+                  <artifactId>ant-optional</artifactId>
+                  <version>1.5.3-1</version>
+               </dependency>
+            </dependencies>
+         </plugin>
+      </plugins>
+   </build>
+</project>

Deleted: ws/branches/2.2.6-GA-JBAS7/exo.ws.frameworks.servlet/pom.xml
===================================================================
--- ws/tags/2.2.6-GA/exo.ws.frameworks.servlet/pom.xml	2012-03-03 07:52:46 UTC (rev 5763)
+++ ws/branches/2.2.6-GA-JBAS7/exo.ws.frameworks.servlet/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -1,53 +0,0 @@
-<!--
-
-    Copyright (C) 2009 eXo Platform SAS.
-
-    This is free software; you can redistribute it and/or modify it
-    under the terms of the GNU Lesser General Public License as
-    published by the Free Software Foundation; either version 2.1 of
-    the License, or (at your option) any later version.
-
-    This software is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-    Lesser General Public License for more details.
-
-    You should have received a copy of the GNU Lesser General Public
-    License along with this software; if not, write to the Free
-    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-    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">
-
-   <modelVersion>4.0.0</modelVersion>
-
-   <parent>
-      <groupId>org.exoplatform.ws</groupId>
-      <artifactId>ws-parent</artifactId>
-      <version>2.2.6-GA</version>
-   </parent>
-
-   <artifactId>exo.ws.frameworks.servlet</artifactId>
-
-   <name>eXo WS :: Framework :: Servlet</name>
-
-   <dependencies>
-      <dependency>
-         <groupId>javax.servlet</groupId>
-         <artifactId>servlet-api</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>org.exoplatform.kernel</groupId>
-         <artifactId>exo.kernel.component.common</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>org.exoplatform.kernel</groupId>
-         <artifactId>exo.kernel.commons</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>org.exoplatform.kernel</groupId>
-         <artifactId>exo.kernel.container</artifactId>
-      </dependency>      
-   </dependencies>
-</project>

Copied: ws/branches/2.2.6-GA-JBAS7/exo.ws.frameworks.servlet/pom.xml (from rev 5764, ws/tags/2.2.6-GA/exo.ws.frameworks.servlet/pom.xml)
===================================================================
--- ws/branches/2.2.6-GA-JBAS7/exo.ws.frameworks.servlet/pom.xml	                        (rev 0)
+++ ws/branches/2.2.6-GA-JBAS7/exo.ws.frameworks.servlet/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -0,0 +1,53 @@
+<!--
+
+    Copyright (C) 2009 eXo Platform SAS.
+
+    This is free software; you can redistribute it and/or modify it
+    under the terms of the GNU Lesser General Public License as
+    published by the Free Software Foundation; either version 2.1 of
+    the License, or (at your option) any later version.
+
+    This software is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this software; if not, write to the Free
+    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+    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">
+
+   <modelVersion>4.0.0</modelVersion>
+
+   <parent>
+      <groupId>org.exoplatform.ws</groupId>
+      <artifactId>ws-parent</artifactId>
+      <version>2.2.6-GA-JBAS7-SNAPSHOT</version>
+   </parent>
+
+   <artifactId>exo.ws.frameworks.servlet</artifactId>
+
+   <name>eXo WS :: Framework :: Servlet</name>
+
+   <dependencies>
+      <dependency>
+         <groupId>javax.servlet</groupId>
+         <artifactId>servlet-api</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.exoplatform.kernel</groupId>
+         <artifactId>exo.kernel.component.common</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.exoplatform.kernel</groupId>
+         <artifactId>exo.kernel.commons</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.exoplatform.kernel</groupId>
+         <artifactId>exo.kernel.container</artifactId>
+      </dependency>      
+   </dependencies>
+</project>

Deleted: ws/branches/2.2.6-GA-JBAS7/exo.ws.rest.core/pom.xml
===================================================================
--- ws/tags/2.2.6-GA/exo.ws.rest.core/pom.xml	2012-03-03 07:52:46 UTC (rev 5763)
+++ ws/branches/2.2.6-GA-JBAS7/exo.ws.rest.core/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -1,221 +0,0 @@
-<!--
-
-    Copyright (C) 2009 eXo Platform SAS.
-
-    This is free software; you can redistribute it and/or modify it
-    under the terms of the GNU Lesser General Public License as
-    published by the Free Software Foundation; either version 2.1 of
-    the License, or (at your option) any later version.
-
-    This software is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-    Lesser General Public License for more details.
-
-    You should have received a copy of the GNU Lesser General Public
-    License along with this software; if not, write to the Free
-    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-    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">
-
-   <modelVersion>4.0.0</modelVersion>
-
-   <parent>
-      <groupId>org.exoplatform.ws</groupId>
-      <artifactId>ws-parent</artifactId>
-      <version>2.2.6-GA</version>
-   </parent>
-
-   <artifactId>exo.ws.rest.core</artifactId>
-
-   <name>eXo WS :: REST :: Core</name>
-
-   <dependencies>
-      <dependency>
-         <groupId>org.exoplatform.kernel</groupId>
-         <artifactId>exo.kernel.commons</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>org.exoplatform.kernel</groupId>
-         <artifactId>exo.kernel.container</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>org.exoplatform.kernel</groupId>
-         <artifactId>exo.kernel.commons.test</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>org.exoplatform.ws</groupId>
-         <artifactId>exo.ws.frameworks.json</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>org.exoplatform.ws</groupId>
-         <artifactId>exo.ws.testframework</artifactId>
-         <scope>test</scope>
-      </dependency>
-      <dependency>
-         <groupId>junit</groupId>
-         <artifactId>junit</artifactId>
-         <scope>test</scope>
-      </dependency> 
-      <dependency>
-         <groupId>javax.servlet</groupId>
-         <artifactId>servlet-api</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>javax.mail</groupId>
-         <artifactId>mail</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>javax.activation</groupId>
-         <artifactId>activation</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>picocontainer</groupId>
-         <artifactId>picocontainer</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>net.sf.jtidy</groupId>
-         <artifactId>jtidy</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>xpp3</groupId>
-         <artifactId>xpp3</artifactId>        
-      </dependency>
-      <dependency>
-         <groupId>javax.xml.bind</groupId>
-         <artifactId>jaxb-api</artifactId>
-      </dependency>
-      <dependency>      
-         <groupId>org.jvnet.jaxb2.maven2</groupId>
-         <artifactId>maven-jaxb2-plugin</artifactId>
-         <scope>test</scope>
-      </dependency>
-      <dependency>
-         <groupId>javax.ws.rs</groupId>
-         <artifactId>jsr311-api</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>commons-fileupload</groupId>
-         <artifactId>commons-fileupload</artifactId>
-      </dependency>
-      <dependency>
-      	<groupId>javax.inject</groupId>
-      	<artifactId>javax.inject</artifactId>
-      </dependency>
-   </dependencies>
-
-   <build>
-      <plugins>
-         <plugin>
-            <groupId>org.codehaus.mojo</groupId>
-            <artifactId>build-helper-maven-plugin</artifactId>
-            <version>1.5</version>
-            <executions>
-               <execution>
-                  <id>add-test-sources</id>
-                  <phase>generate-test-sources</phase>
-                  <goals>
-                     <goal>add-test-source</goal>
-                  </goals>
-                  <configuration>
-                     <sources>
-                        <source>target/generated-test-sources</source>
-                     </sources>
-                  </configuration>
-               </execution>
-            </executions>
-         </plugin>
-         <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-               <argLine>${env.MAVEN_OPTS} -Djava.security.manager=org.exoplatform.commons.test.TestSecurityManager -Djava.security.policy=${project.build.directory}/test-classes/test.policy</argLine>
-            </configuration>
-         </plugin>
-         <plugin>
-            <groupId>org.jvnet.jaxb2.maven2</groupId>
-            <artifactId>maven-jaxb2-plugin</artifactId>
-            <executions>
-               <execution>
-                  <id>generate wadl classes</id>
-                  <goals>
-                     <goal>generate</goal>
-                  </goals>
-                  <phase>generate-sources</phase>
-                  <configuration>
-                     <schemaDirectory>src/main/resources</schemaDirectory>
-                     <catalog>src/main/resources/catalog.xml</catalog>
-                     <generateDirectory>target/generated-sources</generateDirectory>
-                     <generatePackage>org.exoplatform.services.rest.wadl.research</generatePackage>
-                     <args>
-                        <arg>-extension</arg>
-                     </args>
-                     <schemaIncludes>
-                        <include>wadl.xsd</include>
-                     </schemaIncludes>
-                  </configuration>
-               </execution>
-               <execution>
-                  <id>generate classes for test</id>
-                  <goals>
-                     <goal>generate</goal>
-                  </goals>
-                  <phase>generate-test-sources</phase>
-                  <configuration>
-                     <schemaDirectory>src/test/resources</schemaDirectory>
-                     <catalog>src/main/resources/catalog.xml</catalog>
-                     <generateDirectory>target/generated-test-sources</generateDirectory>
-                     <generatePackage>org.exoplatform.services.rest.generated</generatePackage>
-                     <args>
-                        <arg>-extension</arg>
-                     </args>
-                     <schemaIncludes>
-                        <include>book.xsd</include>
-                     </schemaIncludes>
-                  </configuration>
-               </execution>
-            </executions>
-         </plugin>
-         <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-antrun-plugin</artifactId>
-            <executions>
-               <execution>
-                  <id>prepare-test-policy</id>
-                  <phase>process-test-resources</phase>
-                  <configuration>
-                     <tasks>
-                        <echo>Creating Access Policy for tests</echo>
-                        <makeurl file="${settings.localRepository}" property="localRepositoryURL" />
-                        <makeurl file="${project.build.outputDirectory}" property="outputDirectoryURL" />
-                        <makeurl file="${project.build.testOutputDirectory}" property="testOutputDirectoryURL" />
-                        <copy todir="${project.build.testOutputDirectory}" overwrite="true">
-                           <fileset dir="${project.basedir}/src/test/resources/">
-                              <include name="test.policy" />
-                           </fileset>
-                           <filterset>
-                              <filter token="MAVEN_REPO" value="${localRepositoryURL}" />
-                              <filter token="MAIN_CLASSES" value="${outputDirectoryURL}" />
-                              <filter token="TEST_CLASSES" value="${testOutputDirectoryURL}" />
-                           </filterset>
-                        </copy>
-                     </tasks>
-                  </configuration>
-                  <goals>
-                     <goal>run</goal>
-                  </goals>
-               </execution>
-            </executions>
-            <dependencies>
-               <dependency>
-                  <groupId>ant</groupId>
-                  <artifactId>ant-optional</artifactId>
-                  <version>1.5.3-1</version>
-               </dependency>
-            </dependencies>
-         </plugin>
-      </plugins>
-   </build>
-</project>

Copied: ws/branches/2.2.6-GA-JBAS7/exo.ws.rest.core/pom.xml (from rev 5764, ws/tags/2.2.6-GA/exo.ws.rest.core/pom.xml)
===================================================================
--- ws/branches/2.2.6-GA-JBAS7/exo.ws.rest.core/pom.xml	                        (rev 0)
+++ ws/branches/2.2.6-GA-JBAS7/exo.ws.rest.core/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -0,0 +1,221 @@
+<!--
+
+    Copyright (C) 2009 eXo Platform SAS.
+
+    This is free software; you can redistribute it and/or modify it
+    under the terms of the GNU Lesser General Public License as
+    published by the Free Software Foundation; either version 2.1 of
+    the License, or (at your option) any later version.
+
+    This software is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this software; if not, write to the Free
+    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+    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">
+
+   <modelVersion>4.0.0</modelVersion>
+
+   <parent>
+      <groupId>org.exoplatform.ws</groupId>
+      <artifactId>ws-parent</artifactId>
+      <version>2.2.6-GA-JBAS7-SNAPSHOT</version>
+   </parent>
+
+   <artifactId>exo.ws.rest.core</artifactId>
+
+   <name>eXo WS :: REST :: Core</name>
+
+   <dependencies>
+      <dependency>
+         <groupId>org.exoplatform.kernel</groupId>
+         <artifactId>exo.kernel.commons</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.exoplatform.kernel</groupId>
+         <artifactId>exo.kernel.container</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.exoplatform.kernel</groupId>
+         <artifactId>exo.kernel.commons.test</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.exoplatform.ws</groupId>
+         <artifactId>exo.ws.frameworks.json</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.exoplatform.ws</groupId>
+         <artifactId>exo.ws.testframework</artifactId>
+         <scope>test</scope>
+      </dependency>
+      <dependency>
+         <groupId>junit</groupId>
+         <artifactId>junit</artifactId>
+         <scope>test</scope>
+      </dependency> 
+      <dependency>
+         <groupId>javax.servlet</groupId>
+         <artifactId>servlet-api</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>javax.mail</groupId>
+         <artifactId>mail</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>javax.activation</groupId>
+         <artifactId>activation</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>picocontainer</groupId>
+         <artifactId>picocontainer</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>net.sf.jtidy</groupId>
+         <artifactId>jtidy</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>xpp3</groupId>
+         <artifactId>xpp3</artifactId>        
+      </dependency>
+      <dependency>
+         <groupId>javax.xml.bind</groupId>
+         <artifactId>jaxb-api</artifactId>
+      </dependency>
+      <dependency>      
+         <groupId>org.jvnet.jaxb2.maven2</groupId>
+         <artifactId>maven-jaxb2-plugin</artifactId>
+         <scope>test</scope>
+      </dependency>
+      <dependency>
+         <groupId>javax.ws.rs</groupId>
+         <artifactId>jsr311-api</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>commons-fileupload</groupId>
+         <artifactId>commons-fileupload</artifactId>
+      </dependency>
+      <dependency>
+      	<groupId>javax.inject</groupId>
+      	<artifactId>javax.inject</artifactId>
+      </dependency>
+   </dependencies>
+
+   <build>
+      <plugins>
+         <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>build-helper-maven-plugin</artifactId>
+            <version>1.5</version>
+            <executions>
+               <execution>
+                  <id>add-test-sources</id>
+                  <phase>generate-test-sources</phase>
+                  <goals>
+                     <goal>add-test-source</goal>
+                  </goals>
+                  <configuration>
+                     <sources>
+                        <source>target/generated-test-sources</source>
+                     </sources>
+                  </configuration>
+               </execution>
+            </executions>
+         </plugin>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+               <argLine>${env.MAVEN_OPTS} -Djava.security.manager=org.exoplatform.commons.test.TestSecurityManager -Djava.security.policy=${project.build.directory}/test-classes/test.policy</argLine>
+            </configuration>
+         </plugin>
+         <plugin>
+            <groupId>org.jvnet.jaxb2.maven2</groupId>
+            <artifactId>maven-jaxb2-plugin</artifactId>
+            <executions>
+               <execution>
+                  <id>generate wadl classes</id>
+                  <goals>
+                     <goal>generate</goal>
+                  </goals>
+                  <phase>generate-sources</phase>
+                  <configuration>
+                     <schemaDirectory>src/main/resources</schemaDirectory>
+                     <catalog>src/main/resources/catalog.xml</catalog>
+                     <generateDirectory>target/generated-sources</generateDirectory>
+                     <generatePackage>org.exoplatform.services.rest.wadl.research</generatePackage>
+                     <args>
+                        <arg>-extension</arg>
+                     </args>
+                     <schemaIncludes>
+                        <include>wadl.xsd</include>
+                     </schemaIncludes>
+                  </configuration>
+               </execution>
+               <execution>
+                  <id>generate classes for test</id>
+                  <goals>
+                     <goal>generate</goal>
+                  </goals>
+                  <phase>generate-test-sources</phase>
+                  <configuration>
+                     <schemaDirectory>src/test/resources</schemaDirectory>
+                     <catalog>src/main/resources/catalog.xml</catalog>
+                     <generateDirectory>target/generated-test-sources</generateDirectory>
+                     <generatePackage>org.exoplatform.services.rest.generated</generatePackage>
+                     <args>
+                        <arg>-extension</arg>
+                     </args>
+                     <schemaIncludes>
+                        <include>book.xsd</include>
+                     </schemaIncludes>
+                  </configuration>
+               </execution>
+            </executions>
+         </plugin>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <executions>
+               <execution>
+                  <id>prepare-test-policy</id>
+                  <phase>process-test-resources</phase>
+                  <configuration>
+                     <tasks>
+                        <echo>Creating Access Policy for tests</echo>
+                        <makeurl file="${settings.localRepository}" property="localRepositoryURL" />
+                        <makeurl file="${project.build.outputDirectory}" property="outputDirectoryURL" />
+                        <makeurl file="${project.build.testOutputDirectory}" property="testOutputDirectoryURL" />
+                        <copy todir="${project.build.testOutputDirectory}" overwrite="true">
+                           <fileset dir="${project.basedir}/src/test/resources/">
+                              <include name="test.policy" />
+                           </fileset>
+                           <filterset>
+                              <filter token="MAVEN_REPO" value="${localRepositoryURL}" />
+                              <filter token="MAIN_CLASSES" value="${outputDirectoryURL}" />
+                              <filter token="TEST_CLASSES" value="${testOutputDirectoryURL}" />
+                           </filterset>
+                        </copy>
+                     </tasks>
+                  </configuration>
+                  <goals>
+                     <goal>run</goal>
+                  </goals>
+               </execution>
+            </executions>
+            <dependencies>
+               <dependency>
+                  <groupId>ant</groupId>
+                  <artifactId>ant-optional</artifactId>
+                  <version>1.5.3-1</version>
+               </dependency>
+            </dependencies>
+         </plugin>
+      </plugins>
+   </build>
+</project>

Deleted: ws/branches/2.2.6-GA-JBAS7/exo.ws.rest.ext/pom.xml
===================================================================
--- ws/tags/2.2.6-GA/exo.ws.rest.ext/pom.xml	2012-03-03 07:52:46 UTC (rev 5763)
+++ ws/branches/2.2.6-GA-JBAS7/exo.ws.rest.ext/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -1,147 +0,0 @@
-	<!--
-
-    Copyright (C) 2009 eXo Platform SAS.
-
-    This is free software; you can redistribute it and/or modify it
-    under the terms of the GNU Lesser General Public License as
-    published by the Free Software Foundation; either version 2.1 of
-    the License, or (at your option) any later version.
-
-    This software is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-    Lesser General Public License for more details.
-
-    You should have received a copy of the GNU Lesser General Public
-    License along with this software; if not, write to the Free
-    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-    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">
-
-	<modelVersion>4.0.0</modelVersion>
-
-	<parent>
-		<groupId>org.exoplatform.ws</groupId>
-		<artifactId>ws-parent</artifactId>
-		<version>2.2.6-GA</version>
-	</parent>
-
-	<artifactId>exo.ws.rest.ext</artifactId>
-
-	<name>eXo WS :: REST :: Extentions</name>
-
-	<dependencies>
-		<dependency>
-			<groupId>org.exoplatform.kernel</groupId>
-			<artifactId>exo.kernel.container</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.exoplatform.kernel</groupId>
-			<artifactId>exo.kernel.commons</artifactId>
-		</dependency>
-      <dependency>
-         <groupId>org.exoplatform.kernel</groupId>
-         <artifactId>exo.kernel.commons.test</artifactId>
-      </dependency>
-		<dependency>
-			<groupId>org.exoplatform.core</groupId>
-			<artifactId>exo.core.component.xml-processing</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.exoplatform.core</groupId>
-			<artifactId>exo.core.component.script.groovy</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.exoplatform.ws</groupId>
-			<artifactId>exo.ws.commons</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.exoplatform.ws</groupId>
-			<artifactId>exo.ws.rest.core</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.exoplatform.ws</groupId>
-			<artifactId>exo.ws.testframework</artifactId>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>javax.annotation</groupId>
-			<artifactId>jsr250-api</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>net.sf.jtidy</groupId>
-			<artifactId>jtidy</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-         <scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>javax.ws.rs</groupId>
-			<artifactId>jsr311-api</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>xpp3</groupId>
-			<artifactId>xpp3</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>javax.servlet</groupId>
-			<artifactId>servlet-api</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.codehaus.groovy</groupId>
-			<artifactId>groovy-all</artifactId>
-		</dependency>
-	</dependencies>
-	<build>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-surefire-plugin</artifactId>
-				<configuration>
-               <argLine>${env.MAVEN_OPTS} -Djava.security.manager=org.exoplatform.commons.test.TestSecurityManager -Djava.security.policy=${project.build.directory}/test-classes/test.policy</argLine>
-				</configuration>
-			</plugin>
-         <plugin>
-            <artifactId>maven-antrun-plugin</artifactId>
-            <executions>
-               <execution>
-                  <id>prepare-test-policy</id>
-                  <phase>process-test-resources</phase>
-                  <configuration>
-                     <tasks>
-                        <echo>Creating Access Policy for tests</echo>
-                        <makeurl file="${settings.localRepository}" property="localRepositoryURL" />
-                        <makeurl file="${project.build.outputDirectory}" property="outputDirectoryURL" />
-                        <makeurl file="${project.build.testOutputDirectory}" property="testOutputDirectoryURL" />
-                        <copy todir="${project.build.testOutputDirectory}" overwrite="true">
-                           <fileset dir="${project.basedir}/src/test/resources/">
-                              <include name="test.policy" />
-                           </fileset>
-                           <filterset>
-                              <filter token="MAVEN_REPO" value="${localRepositoryURL}" />
-                              <filter token="MAIN_CLASSES" value="${outputDirectoryURL}" />
-                              <filter token="TEST_CLASSES" value="${testOutputDirectoryURL}" />
-                           </filterset>
-                        </copy>
-                     </tasks>
-                  </configuration>
-                  <goals>
-                     <goal>run</goal>
-                  </goals>
-               </execution>
-            </executions>
-            <dependencies>
-               <dependency>
-                  <groupId>ant</groupId>
-                  <artifactId>ant-optional</artifactId>
-                  <version>1.5.3-1</version>
-               </dependency>
-            </dependencies>
-         </plugin>
-		</plugins>
-	</build>
-</project>

Copied: ws/branches/2.2.6-GA-JBAS7/exo.ws.rest.ext/pom.xml (from rev 5764, ws/tags/2.2.6-GA/exo.ws.rest.ext/pom.xml)
===================================================================
--- ws/branches/2.2.6-GA-JBAS7/exo.ws.rest.ext/pom.xml	                        (rev 0)
+++ ws/branches/2.2.6-GA-JBAS7/exo.ws.rest.ext/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -0,0 +1,147 @@
+	<!--
+
+    Copyright (C) 2009 eXo Platform SAS.
+
+    This is free software; you can redistribute it and/or modify it
+    under the terms of the GNU Lesser General Public License as
+    published by the Free Software Foundation; either version 2.1 of
+    the License, or (at your option) any later version.
+
+    This software is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this software; if not, write to the Free
+    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+    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">
+
+	<modelVersion>4.0.0</modelVersion>
+
+	<parent>
+		<groupId>org.exoplatform.ws</groupId>
+		<artifactId>ws-parent</artifactId>
+		<version>2.2.6-GA-JBAS7-SNAPSHOT</version>
+	</parent>
+
+	<artifactId>exo.ws.rest.ext</artifactId>
+
+	<name>eXo WS :: REST :: Extentions</name>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.exoplatform.kernel</groupId>
+			<artifactId>exo.kernel.container</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.exoplatform.kernel</groupId>
+			<artifactId>exo.kernel.commons</artifactId>
+		</dependency>
+      <dependency>
+         <groupId>org.exoplatform.kernel</groupId>
+         <artifactId>exo.kernel.commons.test</artifactId>
+      </dependency>
+		<dependency>
+			<groupId>org.exoplatform.core</groupId>
+			<artifactId>exo.core.component.xml-processing</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.exoplatform.core</groupId>
+			<artifactId>exo.core.component.script.groovy</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.exoplatform.ws</groupId>
+			<artifactId>exo.ws.commons</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.exoplatform.ws</groupId>
+			<artifactId>exo.ws.rest.core</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.exoplatform.ws</groupId>
+			<artifactId>exo.ws.testframework</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>javax.annotation</groupId>
+			<artifactId>jsr250-api</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>net.sf.jtidy</groupId>
+			<artifactId>jtidy</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+         <scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>javax.ws.rs</groupId>
+			<artifactId>jsr311-api</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>xpp3</groupId>
+			<artifactId>xpp3</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>javax.servlet</groupId>
+			<artifactId>servlet-api</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.codehaus.groovy</groupId>
+			<artifactId>groovy-all</artifactId>
+		</dependency>
+	</dependencies>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<configuration>
+               <argLine>${env.MAVEN_OPTS} -Djava.security.manager=org.exoplatform.commons.test.TestSecurityManager -Djava.security.policy=${project.build.directory}/test-classes/test.policy</argLine>
+				</configuration>
+			</plugin>
+         <plugin>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <executions>
+               <execution>
+                  <id>prepare-test-policy</id>
+                  <phase>process-test-resources</phase>
+                  <configuration>
+                     <tasks>
+                        <echo>Creating Access Policy for tests</echo>
+                        <makeurl file="${settings.localRepository}" property="localRepositoryURL" />
+                        <makeurl file="${project.build.outputDirectory}" property="outputDirectoryURL" />
+                        <makeurl file="${project.build.testOutputDirectory}" property="testOutputDirectoryURL" />
+                        <copy todir="${project.build.testOutputDirectory}" overwrite="true">
+                           <fileset dir="${project.basedir}/src/test/resources/">
+                              <include name="test.policy" />
+                           </fileset>
+                           <filterset>
+                              <filter token="MAVEN_REPO" value="${localRepositoryURL}" />
+                              <filter token="MAIN_CLASSES" value="${outputDirectoryURL}" />
+                              <filter token="TEST_CLASSES" value="${testOutputDirectoryURL}" />
+                           </filterset>
+                        </copy>
+                     </tasks>
+                  </configuration>
+                  <goals>
+                     <goal>run</goal>
+                  </goals>
+               </execution>
+            </executions>
+            <dependencies>
+               <dependency>
+                  <groupId>ant</groupId>
+                  <artifactId>ant-optional</artifactId>
+                  <version>1.5.3-1</version>
+               </dependency>
+            </dependencies>
+         </plugin>
+		</plugins>
+	</build>
+</project>

Deleted: ws/branches/2.2.6-GA-JBAS7/exo.ws.testframework/pom.xml
===================================================================
--- ws/tags/2.2.6-GA/exo.ws.testframework/pom.xml	2012-03-03 07:52:46 UTC (rev 5763)
+++ ws/branches/2.2.6-GA-JBAS7/exo.ws.testframework/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -1,45 +0,0 @@
-<!--
-
-    Copyright (C) 2009 eXo Platform SAS.
-
-    This is free software; you can redistribute it and/or modify it
-    under the terms of the GNU Lesser General Public License as
-    published by the Free Software Foundation; either version 2.1 of
-    the License, or (at your option) any later version.
-
-    This software is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-    Lesser General Public License for more details.
-
-    You should have received a copy of the GNU Lesser General Public
-    License along with this software; if not, write to the Free
-    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-    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">
-
-  <modelVersion>4.0.0</modelVersion>
-
-  <parent>
-    <groupId>org.exoplatform.ws</groupId>
-    <artifactId>ws-parent</artifactId>
-    <version>2.2.6-GA</version>
-  </parent>
-
-  <artifactId>exo.ws.testframework</artifactId>
-
-  <name>eXo WS :: HTTP :: testframework</name>
-
-  <dependencies>
-    <dependency>
-      <groupId>javax.servlet</groupId>
-      <artifactId>servlet-api</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.exoplatform.kernel</groupId>
-      <artifactId>exo.kernel.commons</artifactId>  
-    </dependency>
-  </dependencies>
-</project>
\ No newline at end of file

Copied: ws/branches/2.2.6-GA-JBAS7/exo.ws.testframework/pom.xml (from rev 5764, ws/tags/2.2.6-GA/exo.ws.testframework/pom.xml)
===================================================================
--- ws/branches/2.2.6-GA-JBAS7/exo.ws.testframework/pom.xml	                        (rev 0)
+++ ws/branches/2.2.6-GA-JBAS7/exo.ws.testframework/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -0,0 +1,45 @@
+<!--
+
+    Copyright (C) 2009 eXo Platform SAS.
+
+    This is free software; you can redistribute it and/or modify it
+    under the terms of the GNU Lesser General Public License as
+    published by the Free Software Foundation; either version 2.1 of
+    the License, or (at your option) any later version.
+
+    This software is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this software; if not, write to the Free
+    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+    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">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.exoplatform.ws</groupId>
+    <artifactId>ws-parent</artifactId>
+    <version>2.2.6-GA-JBAS7-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>exo.ws.testframework</artifactId>
+
+  <name>eXo WS :: HTTP :: testframework</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.exoplatform.kernel</groupId>
+      <artifactId>exo.kernel.commons</artifactId>  
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Deleted: ws/branches/2.2.6-GA-JBAS7/packaging/module/pom.xml
===================================================================
--- ws/tags/2.2.6-GA/packaging/module/pom.xml	2012-03-03 07:52:46 UTC (rev 5763)
+++ ws/branches/2.2.6-GA-JBAS7/packaging/module/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -1,68 +0,0 @@
-    <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.exoplatform.ws</groupId>
-      <artifactId>ws-parent</artifactId>
-      <version>2.2.6-GA</version>
-      <relativePath>../../pom.xml</relativePath>
-   </parent>
-
-   <modelVersion>4.0.0</modelVersion>
-   <artifactId>ws.packaging.module</artifactId>
-   <packaging>pom</packaging>
-   <name>eXo WS Build module</name>
-
-   <properties>
-        <exobuild.name>ws</exobuild.name>
-        <exobuild.type>module</exobuild.type>
-        <enforcer.skip>true</enforcer.skip>
-   </properties>
-
-   <build>
-       <plugins>
-           <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-resources-plugin</artifactId>
-                <executions>
-                  <execution>
-                    <id>prepare</id>
-                    <phase>package</phase>
-                    <goals>
-                      <goal>copy-resources</goal>
-                    </goals>
-                    <configuration>
-                      <outputDirectory>target</outputDirectory>
-                      <resources>
-                          <resource>
-                            <directory>src/main/javascript</directory>
-                            <filtering>true</filtering>
-                          </resource>
-                      </resources>
-                    </configuration>
-                  </execution>
-                </executions>
-           </plugin>
-           <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>build-helper-maven-plugin</artifactId>
-                <version>1.3</version>
-                <executions>
-                  <execution>
-                    <id>attach-artifacts</id>
-                    <phase>package</phase>
-                    <goals>
-                      <goal>attach-artifact</goal>
-                    </goals>
-                    <configuration>
-                      <artifacts>
-                        <artifact>
-                          <file>target/${exobuild.name}.packaging.${exobuild.type}.js</file>
-                          <type>js</type>
-                        </artifact>
-                      </artifacts>
-                    </configuration>
-                  </execution>
-                </executions>
-            </plugin>
-       </plugins>
-   </build> 
-</project>

Copied: ws/branches/2.2.6-GA-JBAS7/packaging/module/pom.xml (from rev 5764, ws/tags/2.2.6-GA/packaging/module/pom.xml)
===================================================================
--- ws/branches/2.2.6-GA-JBAS7/packaging/module/pom.xml	                        (rev 0)
+++ ws/branches/2.2.6-GA-JBAS7/packaging/module/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -0,0 +1,68 @@
+    <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.exoplatform.ws</groupId>
+      <artifactId>ws-parent</artifactId>
+      <version>2.2.6-GA-JBAS7-SNAPSHOT</version>
+      <relativePath>../../pom.xml</relativePath>
+   </parent>
+
+   <modelVersion>4.0.0</modelVersion>
+   <artifactId>ws.packaging.module</artifactId>
+   <packaging>pom</packaging>
+   <name>eXo WS Build module</name>
+
+   <properties>
+        <exobuild.name>ws</exobuild.name>
+        <exobuild.type>module</exobuild.type>
+        <enforcer.skip>true</enforcer.skip>
+   </properties>
+
+   <build>
+       <plugins>
+           <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-resources-plugin</artifactId>
+                <executions>
+                  <execution>
+                    <id>prepare</id>
+                    <phase>package</phase>
+                    <goals>
+                      <goal>copy-resources</goal>
+                    </goals>
+                    <configuration>
+                      <outputDirectory>target</outputDirectory>
+                      <resources>
+                          <resource>
+                            <directory>src/main/javascript</directory>
+                            <filtering>true</filtering>
+                          </resource>
+                      </resources>
+                    </configuration>
+                  </execution>
+                </executions>
+           </plugin>
+           <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <version>1.3</version>
+                <executions>
+                  <execution>
+                    <id>attach-artifacts</id>
+                    <phase>package</phase>
+                    <goals>
+                      <goal>attach-artifact</goal>
+                    </goals>
+                    <configuration>
+                      <artifacts>
+                        <artifact>
+                          <file>target/${exobuild.name}.packaging.${exobuild.type}.js</file>
+                          <type>js</type>
+                        </artifact>
+                      </artifacts>
+                    </configuration>
+                  </execution>
+                </executions>
+            </plugin>
+       </plugins>
+   </build> 
+</project>

Deleted: ws/branches/2.2.6-GA-JBAS7/pom.xml
===================================================================
--- ws/tags/2.2.6-GA/pom.xml	2012-03-03 07:52:46 UTC (rev 5763)
+++ ws/branches/2.2.6-GA-JBAS7/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -1,232 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Copyright (C) 2009 eXo Platform SAS.
-
-    This is free software; you can redistribute it and/or modify it
-    under the terms of the GNU Lesser General Public License as
-    published by the Free Software Foundation; either version 2.1 of
-    the License, or (at your option) any later version.
-
-    This software is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-    Lesser General Public License for more details.
-
-    You should have received a copy of the GNU Lesser General Public
-    License along with this software; if not, write to the Free
-    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-    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">
-
-   <modelVersion>4.0.0</modelVersion>
-
-   <parent>
-      <groupId>org.exoplatform</groupId>
-      <artifactId>foundation-parent</artifactId>
-      <version>9</version>
-   </parent>
-
-   <groupId>org.exoplatform.ws</groupId>
-   <artifactId>ws-parent</artifactId>
-   <version>2.2.6-GA</version>
-   <packaging>pom</packaging>
-   <name>eXo WS</name>
-
-   <scm>
-      <connection>scm:svn:http://anonsvn.jboss.org/repos/exo-jcr/ws/tags/2.2.6-GA</connection>
-      <developerConnection>scm:svn:https://svn.jboss.org/repos/exo-jcr/ws/tags/2.2.6-GA</developerConnection>
-      <url>http://fisheye.jboss.org/browse/exo-jcr/ws/tags/2.2.6-GA</url>
-   </scm>
-
-   <properties>
-      <exo.product.name>exo-ws</exo.product.name>
-      <exo.product.specification>2.1</exo.product.specification>
-
-      <org.exoplatform.kernel.version>2.3.6-GA</org.exoplatform.kernel.version>
-      <org.exoplatform.core.version>2.4.6-GA</org.exoplatform.core.version>
-   </properties>
-
-   <modules>
-      <module>exo.ws.commons</module>
-      <module>exo.ws.frameworks.json</module>
-      <module>exo.ws.frameworks.servlet</module>
-      <module>exo.ws.testframework</module>
-      <module>exo.ws.rest.core</module>
-      <module>exo.ws.rest.ext</module>
-      <module>packaging/module</module>
-   </modules>
-
-   <dependencyManagement>
-      <dependencies>
-         <dependency>
-            <groupId>org.exoplatform.kernel</groupId>
-            <artifactId>exo.kernel.commons</artifactId>
-            <version>${org.exoplatform.kernel.version}</version>
-         </dependency>
-         <dependency>
-            <groupId>org.exoplatform.kernel</groupId>
-            <artifactId>exo.kernel.container</artifactId>
-            <version>${org.exoplatform.kernel.version}</version>
-         </dependency>
-         <dependency>
-            <groupId>org.exoplatform.kernel</groupId>
-            <artifactId>exo.kernel.component.common</artifactId>
-            <version>${org.exoplatform.kernel.version}</version>
-         </dependency>
-         <dependency>
-            <groupId>org.exoplatform.kernel</groupId>
-            <artifactId>exo.kernel.commons.test</artifactId>
-            <version>${org.exoplatform.kernel.version}</version>
-            <scope>test</scope>
-         </dependency>
-         <dependency>
-            <groupId>org.exoplatform.core</groupId>
-            <artifactId>exo.core.component.xml-processing</artifactId>
-            <version>${org.exoplatform.core.version}</version>
-         </dependency>
-         <dependency>
-            <groupId>org.exoplatform.core</groupId>
-            <artifactId>exo.core.component.script.groovy</artifactId>
-            <version>${org.exoplatform.core.version}</version>
-         </dependency>
-         <dependency>
-            <groupId>org.exoplatform.ws</groupId>
-            <artifactId>exo.ws.frameworks.json</artifactId>
-            <version>${project.version}</version>
-         </dependency>
-         <dependency>
-            <groupId>org.exoplatform.ws</groupId>
-            <artifactId>exo.ws.testframework</artifactId>
-            <version>${project.version}</version>
-         </dependency>
-         <dependency>
-            <groupId>org.exoplatform.ws</groupId>
-            <artifactId>exo.ws.commons</artifactId>
-            <version>${project.version}</version>
-         </dependency>
-         <dependency>
-            <groupId>org.exoplatform.ws</groupId>
-            <artifactId>exo.ws.rest.core</artifactId>
-            <version>${project.version}</version>
-         </dependency>
-         <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.4</version>
-         </dependency>
-         <dependency>
-            <groupId>javax.mail</groupId>
-            <artifactId>mail</artifactId>
-            <version>1.4.4</version>
-         </dependency>
-         <dependency>
-            <groupId>javax.activation</groupId>
-            <artifactId>activation</artifactId>
-            <version>1.1.1</version>
-         </dependency>
-         <dependency>
-            <groupId>javax.xml.bind</groupId>
-            <artifactId>jaxb-api</artifactId>
-            <version>2.1</version>
-         </dependency>
-         <dependency>
-            <groupId>picocontainer</groupId>
-            <artifactId>picocontainer</artifactId>
-            <version>1.1</version>
-         </dependency>
-         <dependency>
-            <groupId>net.sf.jtidy</groupId>
-            <artifactId>jtidy</artifactId>
-            <version>r938</version>
-         </dependency>
-         <dependency>
-            <groupId>org.jvnet.jaxb2.maven2</groupId>
-            <artifactId>maven-jaxb2-plugin</artifactId>
-            <version>0.7.4</version>
-         </dependency>
-         <dependency>
-            <groupId>commons-fileupload</groupId>
-            <artifactId>commons-fileupload</artifactId>
-            <version>1.0</version>
-         </dependency>
-         <dependency>
-            <groupId>javax.ws.rs</groupId>
-            <artifactId>jsr311-api</artifactId>
-            <version>1.0</version>
-         </dependency>
-         <dependency>
-            <groupId>javax.annotation</groupId>
-            <artifactId>jsr250-api</artifactId>
-            <version>1.0</version>
-         </dependency>
-         <dependency>
-            <groupId>xpp3</groupId>
-            <artifactId>xpp3</artifactId>
-            <version>1.1.4c</version>
-         </dependency>
-         <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-log4j12</artifactId>
-            <version>1.5.8</version>
-            <scope>test</scope>
-         </dependency>
-         <dependency>
-            <groupId>org.codehaus.groovy</groupId>
-            <artifactId>groovy-all</artifactId>
-            <version>1.7.6</version>
-         </dependency>
-         <dependency>
-            <groupId>javax.inject</groupId>
-            <artifactId>javax.inject</artifactId>
-            <version>1</version>
-         </dependency>
-      </dependencies>
-   </dependencyManagement>
-   <dependencies>
-      <dependency>
-         <groupId>org.slf4j</groupId>
-         <artifactId>slf4j-log4j12</artifactId>
-         <scope>test</scope>
-      </dependency>
-   </dependencies>
-
-   <profiles>
-      <profile>
-         <id>release</id>
-         <build>
-            <plugins>
-               <plugin>
-                  <artifactId>maven-assembly-plugin</artifactId>
-                  <dependencies>
-                     <dependency>
-                        <groupId>org.apache.apache.resources</groupId>
-                        <artifactId>apache-source-release-assembly-descriptor</artifactId>
-                        <version>1.0.2</version>
-                     </dependency>
-                  </dependencies>
-                  <executions>
-                     <execution>
-                        <id>source-release-assembly</id>
-                        <phase>package</phase>
-                        <goals>
-                           <goal>single</goal>
-                        </goals>
-                        <configuration>
-                          <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
-                          <descriptorRefs>
-                             <descriptorRef>source-release</descriptorRef>
-                          </descriptorRefs>
-                          <tarLongFileFormat>gnu</tarLongFileFormat>
-                        </configuration>
-                     </execution>
-                  </executions>
-               </plugin>
-            </plugins>
-         </build>
-      </profile>
-   </profiles>
-
-</project>

Copied: ws/branches/2.2.6-GA-JBAS7/pom.xml (from rev 5764, ws/tags/2.2.6-GA/pom.xml)
===================================================================
--- ws/branches/2.2.6-GA-JBAS7/pom.xml	                        (rev 0)
+++ ws/branches/2.2.6-GA-JBAS7/pom.xml	2012-03-03 07:54:46 UTC (rev 5765)
@@ -0,0 +1,232 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Copyright (C) 2009 eXo Platform SAS.
+
+    This is free software; you can redistribute it and/or modify it
+    under the terms of the GNU Lesser General Public License as
+    published by the Free Software Foundation; either version 2.1 of
+    the License, or (at your option) any later version.
+
+    This software is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this software; if not, write to the Free
+    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+    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">
+
+   <modelVersion>4.0.0</modelVersion>
+
+   <parent>
+      <groupId>org.exoplatform</groupId>
+      <artifactId>foundation-parent</artifactId>
+      <version>9</version>
+   </parent>
+
+   <groupId>org.exoplatform.ws</groupId>
+   <artifactId>ws-parent</artifactId>
+   <version>2.2.6-GA-JBAS7-SNAPSHOT</version>
+   <packaging>pom</packaging>
+   <name>eXo WS</name>
+
+   <scm>
+      <connection>scm:svn:http://anonsvn.jboss.org/repos/exo-jcr/ws/branches/2.2.6-GA-JBAS7</connection>
+      <developerConnection>scm:svn:https://svn.jboss.org/repos/exo-jcr/ws/branches/2.2.6-GA-JBAS7</developerConnection>
+      <url>http://fisheye.jboss.org/browse/exo-jcr/ws/branches/2.2.6-GA-JBAS7</url>
+   </scm>
+
+   <properties>
+      <exo.product.name>exo-ws</exo.product.name>
+      <exo.product.specification>2.1</exo.product.specification>
+
+      <org.exoplatform.kernel.version>2.3.6-GA</org.exoplatform.kernel.version>
+      <org.exoplatform.core.version>2.4.6-GA</org.exoplatform.core.version>
+   </properties>
+
+   <modules>
+      <module>exo.ws.commons</module>
+      <module>exo.ws.frameworks.json</module>
+      <module>exo.ws.frameworks.servlet</module>
+      <module>exo.ws.testframework</module>
+      <module>exo.ws.rest.core</module>
+      <module>exo.ws.rest.ext</module>
+      <module>packaging/module</module>
+   </modules>
+
+   <dependencyManagement>
+      <dependencies>
+         <dependency>
+            <groupId>org.exoplatform.kernel</groupId>
+            <artifactId>exo.kernel.commons</artifactId>
+            <version>${org.exoplatform.kernel.version}</version>
+         </dependency>
+         <dependency>
+            <groupId>org.exoplatform.kernel</groupId>
+            <artifactId>exo.kernel.container</artifactId>
+            <version>${org.exoplatform.kernel.version}</version>
+         </dependency>
+         <dependency>
+            <groupId>org.exoplatform.kernel</groupId>
+            <artifactId>exo.kernel.component.common</artifactId>
+            <version>${org.exoplatform.kernel.version}</version>
+         </dependency>
+         <dependency>
+            <groupId>org.exoplatform.kernel</groupId>
+            <artifactId>exo.kernel.commons.test</artifactId>
+            <version>${org.exoplatform.kernel.version}</version>
+            <scope>test</scope>
+         </dependency>
+         <dependency>
+            <groupId>org.exoplatform.core</groupId>
+            <artifactId>exo.core.component.xml-processing</artifactId>
+            <version>${org.exoplatform.core.version}</version>
+         </dependency>
+         <dependency>
+            <groupId>org.exoplatform.core</groupId>
+            <artifactId>exo.core.component.script.groovy</artifactId>
+            <version>${org.exoplatform.core.version}</version>
+         </dependency>
+         <dependency>
+            <groupId>org.exoplatform.ws</groupId>
+            <artifactId>exo.ws.frameworks.json</artifactId>
+            <version>${project.version}</version>
+         </dependency>
+         <dependency>
+            <groupId>org.exoplatform.ws</groupId>
+            <artifactId>exo.ws.testframework</artifactId>
+            <version>${project.version}</version>
+         </dependency>
+         <dependency>
+            <groupId>org.exoplatform.ws</groupId>
+            <artifactId>exo.ws.commons</artifactId>
+            <version>${project.version}</version>
+         </dependency>
+         <dependency>
+            <groupId>org.exoplatform.ws</groupId>
+            <artifactId>exo.ws.rest.core</artifactId>
+            <version>${project.version}</version>
+         </dependency>
+         <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+            <version>2.4</version>
+         </dependency>
+         <dependency>
+            <groupId>javax.mail</groupId>
+            <artifactId>mail</artifactId>
+            <version>1.4.4</version>
+         </dependency>
+         <dependency>
+            <groupId>javax.activation</groupId>
+            <artifactId>activation</artifactId>
+            <version>1.1.1</version>
+         </dependency>
+         <dependency>
+            <groupId>javax.xml.bind</groupId>
+            <artifactId>jaxb-api</artifactId>
+            <version>2.1</version>
+         </dependency>
+         <dependency>
+            <groupId>picocontainer</groupId>
+            <artifactId>picocontainer</artifactId>
+            <version>1.1</version>
+         </dependency>
+         <dependency>
+            <groupId>net.sf.jtidy</groupId>
+            <artifactId>jtidy</artifactId>
+            <version>r938</version>
+         </dependency>
+         <dependency>
+            <groupId>org.jvnet.jaxb2.maven2</groupId>
+            <artifactId>maven-jaxb2-plugin</artifactId>
+            <version>0.7.4</version>
+         </dependency>
+         <dependency>
+            <groupId>commons-fileupload</groupId>
+            <artifactId>commons-fileupload</artifactId>
+            <version>1.0</version>
+         </dependency>
+         <dependency>
+            <groupId>javax.ws.rs</groupId>
+            <artifactId>jsr311-api</artifactId>
+            <version>1.0</version>
+         </dependency>
+         <dependency>
+            <groupId>javax.annotation</groupId>
+            <artifactId>jsr250-api</artifactId>
+            <version>1.0</version>
+         </dependency>
+         <dependency>
+            <groupId>xpp3</groupId>
+            <artifactId>xpp3</artifactId>
+            <version>1.1.4c</version>
+         </dependency>
+         <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-log4j12</artifactId>
+            <version>1.5.8</version>
+            <scope>test</scope>
+         </dependency>
+         <dependency>
+            <groupId>org.codehaus.groovy</groupId>
+            <artifactId>groovy-all</artifactId>
+            <version>1.7.6</version>
+         </dependency>
+         <dependency>
+            <groupId>javax.inject</groupId>
+            <artifactId>javax.inject</artifactId>
+            <version>1</version>
+         </dependency>
+      </dependencies>
+   </dependencyManagement>
+   <dependencies>
+      <dependency>
+         <groupId>org.slf4j</groupId>
+         <artifactId>slf4j-log4j12</artifactId>
+         <scope>test</scope>
+      </dependency>
+   </dependencies>
+
+   <profiles>
+      <profile>
+         <id>release</id>
+         <build>
+            <plugins>
+               <plugin>
+                  <artifactId>maven-assembly-plugin</artifactId>
+                  <dependencies>
+                     <dependency>
+                        <groupId>org.apache.apache.resources</groupId>
+                        <artifactId>apache-source-release-assembly-descriptor</artifactId>
+                        <version>1.0.2</version>
+                     </dependency>
+                  </dependencies>
+                  <executions>
+                     <execution>
+                        <id>source-release-assembly</id>
+                        <phase>package</phase>
+                        <goals>
+                           <goal>single</goal>
+                        </goals>
+                        <configuration>
+                          <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
+                          <descriptorRefs>
+                             <descriptorRef>source-release</descriptorRef>
+                          </descriptorRefs>
+                          <tarLongFileFormat>gnu</tarLongFileFormat>
+                        </configuration>
+                     </execution>
+                  </executions>
+               </plugin>
+            </plugins>
+         </build>
+      </profile>
+   </profiles>
+
+</project>



More information about the exo-jcr-commits mailing list