Author: sklevenz
Date: Mon Mar 22 12:11:23 2010
New Revision: 926046

URL: http://svn.apache.org/viewvc?rev=926046&view=rev
Log:
Hardcoded group id of module poms replaced by ${project.groupId} property.

Modified:
    
incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-api/pom.xml
    
incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-impl/pom.xml
    
incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-provider-impl/pom.xml
    
incubator/chemistry/trunk/opencmis/opencmis-commons/opencmis-commons-impl/pom.xml
    
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-fileshare/pom.xml
    
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-impl/pom.xml
    
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-inmemory/pom.xml
    
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-spi/pom.xml
    
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-support/pom.xml
    
incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-browser-app/pom.xml
    incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-fit/pom.xml
    incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-tools/pom.xml
    incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-util/pom.xml

Modified: 
incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-api/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-api/pom.xml?rev=926046&r1=926045&r2=926046&view=diff
==============================================================================
--- 
incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-api/pom.xml 
(original)
+++ 
incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-api/pom.xml 
Mon Mar 22 12:11:23 2010
@@ -1,42 +1,40 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-<!--
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
-  -->
-
-<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
+       <!--
+               Licensed under the Apache License, Version 2.0 (the "License"); 
you
+               may not use this file except in compliance with the License. 
You may
+               obtain a copy of the License at
+
+               http://www.apache.org/licenses/LICENSE-2.0 Unless required by
+               applicable law or agreed to in writing, software distributed 
under the
+               License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES 
OR
+               CONDITIONS OF ANY KIND, either express or implied. See the 
License for
+               the specific language governing permissions and limitations 
under the
+               License.
+       -->
+
+<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.apache.opencmis</groupId>
-    <artifactId>opencmis</artifactId>
-    <version>0.1-SNAPSHOT</version>
-    <relativePath>../../pom.xml</relativePath>
-  </parent>
-  
-  <artifactId>opencmis-client-api</artifactId>
-  <name>OpenCMIS Client API</name>
-
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.opencmis</groupId>
-      <artifactId>opencmis-commons-api</artifactId>
-      <version>${version}</version>
-    </dependency>
-  </dependencies>
+       <modelVersion>4.0.0</modelVersion>
+
+       <parent>
+               <groupId>org.apache.opencmis</groupId>
+               <artifactId>opencmis</artifactId>
+               <version>0.1-SNAPSHOT</version>
+               <relativePath>../../pom.xml</relativePath>
+       </parent>
+
+       <artifactId>opencmis-client-api</artifactId>
+       <name>OpenCMIS Client API</name>
+
+       <dependencies>
+               <dependency>
+                       <groupId>${project.groupId}</groupId>
+                       <artifactId>opencmis-commons-api</artifactId>
+                       <version>${project.version}</version>
+               </dependency>
+       </dependencies>
 
 </project>

Modified: 
incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-impl/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-impl/pom.xml?rev=926046&r1=926045&r2=926046&view=diff
==============================================================================
--- 
incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-impl/pom.xml 
(original)
+++ 
incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-impl/pom.xml 
Mon Mar 22 12:11:23 2010
@@ -31,24 +31,24 @@
 
        <dependencies>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+                       <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-client-api</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                </dependency>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+                       <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-commons-api</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                </dependency>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+                       <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-commons-impl</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                </dependency>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+                       <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-provider-impl</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.easymock</groupId>
@@ -57,9 +57,9 @@
                        <scope>test</scope>
                </dependency>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+                       <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-test-util</artifactId>
-                       <version>0.1-SNAPSHOT</version>
+                       <version>${project.version}</version>
                        <type>jar</type>
                        <scope>compile</scope>
                </dependency>

Modified: 
incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-provider-impl/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-provider-impl/pom.xml?rev=926046&r1=926045&r2=926046&view=diff
==============================================================================
--- 
incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-provider-impl/pom.xml
 (original)
+++ 
incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-provider-impl/pom.xml
 Mon Mar 22 12:11:23 2010
@@ -33,14 +33,14 @@
 
   <dependencies>
     <dependency>
-      <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>opencmis-commons-api</artifactId>
-      <version>${version}</version>
+      <version>${project.version}</version>
     </dependency>
     <dependency>
-      <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>opencmis-commons-impl</artifactId>
-      <version>${version}</version>
+      <version>${project.version}</version>
     </dependency>
     <dependency>
       <groupId>com.sun.xml.ws</groupId>

Modified: 
incubator/chemistry/trunk/opencmis/opencmis-commons/opencmis-commons-impl/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/trunk/opencmis/opencmis-commons/opencmis-commons-impl/pom.xml?rev=926046&r1=926045&r2=926046&view=diff
==============================================================================
--- 
incubator/chemistry/trunk/opencmis/opencmis-commons/opencmis-commons-impl/pom.xml
 (original)
+++ 
incubator/chemistry/trunk/opencmis/opencmis-commons/opencmis-commons-impl/pom.xml
 Mon Mar 22 12:11:23 2010
@@ -1,96 +1,94 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-<!--
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
-  -->
-
-<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
+       <!--
+               Licensed under the Apache License, Version 2.0 (the "License"); 
you
+               may not use this file except in compliance with the License. 
You may
+               obtain a copy of the License at
+
+               http://www.apache.org/licenses/LICENSE-2.0 Unless required by
+               applicable law or agreed to in writing, software distributed 
under the
+               License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES 
OR
+               CONDITIONS OF ANY KIND, either express or implied. See the 
License for
+               the specific language governing permissions and limitations 
under the
+               License.
+       -->
+
+<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.apache.opencmis</groupId>
-    <artifactId>opencmis</artifactId>
-    <version>0.1-SNAPSHOT</version>
-       <relativePath>../../pom.xml</relativePath>
-  </parent>
-  
-  <artifactId>opencmis-commons-impl</artifactId>
-  <name>OpenCMIS Commons Implementation</name>
-
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>jaxws-maven-plugin</artifactId>
-        <executions>
-          <execution>
-            <phase>generate-sources</phase>
-            <goals>
-              <goal>wsimport</goal>
-            </goals>
-            <configuration>
-              
<wsdlDirectory>${project.basedir}/src/main/resources/wsdl</wsdlDirectory>
-              <wsdlFiles>
-                <wsdlFile>CMISWS-Service.wsdl</wsdlFile>
-              </wsdlFiles>
-              <packageName>org.apache.opencmis.commons.impl.jaxb</packageName>
-              <destdir></destdir>
-              <sourceDestDir>${project.basedir}/src/main/java</sourceDestDir>
-              <extension>true</extension>
-              <target>2.1</target>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
-
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.opencmis</groupId>
-      <artifactId>opencmis-commons-api</artifactId>
-      <version>${version}</version>
-    </dependency>
-    <dependency>
-      <groupId>com.sun.xml.ws</groupId>
-      <artifactId>jaxws-rt</artifactId>
-      <version>2.1.7</version>
-      <scope>compile</scope>
-    </dependency>
-  </dependencies>
-
-  <repositories>
-    <repository>
-      <id>maven-repository.dev.java.net</id>
-      <name>Java.net Repository for Maven 1</name>
-      <url>http://download.java.net/maven/1/</url>
-      <layout>legacy</layout>
-    </repository>
-    <repository>
-      <id>maven2-repository.dev.java.net</id>
-      <name>Java.net Repository for Maven 2</name>
-      <url>http://download.java.net/maven/2/</url>
-    </repository>
-  </repositories>
-  
-  <pluginRepositories>
-    <pluginRepository>
-      <id>maven2-repository.dev.java.net</id>
-      <url>http://download.java.net/maven/2/</url>
-    </pluginRepository>
-  </pluginRepositories>  
+       <modelVersion>4.0.0</modelVersion>
+
+       <parent>
+               <groupId>org.apache.opencmis</groupId>
+               <artifactId>opencmis</artifactId>
+               <version>0.1-SNAPSHOT</version>
+               <relativePath>../../pom.xml</relativePath>
+       </parent>
+
+       <artifactId>opencmis-commons-impl</artifactId>
+       <name>OpenCMIS Commons Implementation</name>
+
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.codehaus.mojo</groupId>
+                               <artifactId>jaxws-maven-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <phase>generate-sources</phase>
+                                               <goals>
+                                                       <goal>wsimport</goal>
+                                               </goals>
+                                               <configuration>
+                                                       
<wsdlDirectory>${project.basedir}/src/main/resources/wsdl</wsdlDirectory>
+                                                       <wsdlFiles>
+                                                               
<wsdlFile>CMISWS-Service.wsdl</wsdlFile>
+                                                       </wsdlFiles>
+                                                       
<packageName>org.apache.opencmis.commons.impl.jaxb</packageName>
+                                                       <destdir></destdir>
+                                                       
<sourceDestDir>${project.basedir}/src/main/java</sourceDestDir>
+                                                       
<extension>true</extension>
+                                                       <target>2.1</target>
+                                               </configuration>
+                                       </execution>
+                               </executions>
+                       </plugin>
+               </plugins>
+       </build>
+
+       <dependencies>
+               <dependency>
+                       <groupId>${project.groupId}</groupId>
+                       <artifactId>opencmis-commons-api</artifactId>
+                       <version>${project.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>com.sun.xml.ws</groupId>
+                       <artifactId>jaxws-rt</artifactId>
+                       <version>2.1.7</version>
+                       <scope>compile</scope>
+               </dependency>
+       </dependencies>
+
+       <repositories>
+               <repository>
+                       <id>maven-repository.dev.java.net</id>
+                       <name>Java.net Repository for Maven 1</name>
+                       <url>http://download.java.net/maven/1/</url>
+                       <layout>legacy</layout>
+               </repository>
+               <repository>
+                       <id>maven2-repository.dev.java.net</id>
+                       <name>Java.net Repository for Maven 2</name>
+                       <url>http://download.java.net/maven/2/</url>
+               </repository>
+       </repositories>
+
+       <pluginRepositories>
+               <pluginRepository>
+                       <id>maven2-repository.dev.java.net</id>
+                       <url>http://download.java.net/maven/2/</url>
+               </pluginRepository>
+       </pluginRepositories>
 </project>

Modified: 
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-fileshare/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-fileshare/pom.xml?rev=926046&r1=926045&r2=926046&view=diff
==============================================================================
--- 
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-fileshare/pom.xml
 (original)
+++ 
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-fileshare/pom.xml
 Mon Mar 22 12:11:23 2010
@@ -53,7 +53,7 @@
                                                <overlay>
                                                </overlay>
                                                <overlay>
-                                                       
<groupId>org.apache.opencmis</groupId>
+                                                       
<groupId>${project.groupId}</groupId>
                                                        
<artifactId>opencmis-server-impl</artifactId>
                                                </overlay>
                                        </overlays>
@@ -64,30 +64,30 @@
 
        <dependencies>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+                       <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-commons-api</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                </dependency>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+                       <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-commons-impl</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                </dependency>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+                       <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-server-spi</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                </dependency>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+                       <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-server-impl</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                        <type>war</type>
                </dependency>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+                       <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-server-support</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                </dependency>
        </dependencies>
 

Modified: 
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-impl/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-impl/pom.xml?rev=926046&r1=926045&r2=926046&view=diff
==============================================================================
--- 
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-impl/pom.xml 
(original)
+++ 
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-impl/pom.xml 
Mon Mar 22 12:11:23 2010
@@ -1,118 +1,116 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-<!--
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
-  -->
-
-<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
+       <!--
+               Licensed under the Apache License, Version 2.0 (the "License"); 
you
+               may not use this file except in compliance with the License. 
You may
+               obtain a copy of the License at
+
+               http://www.apache.org/licenses/LICENSE-2.0 Unless required by
+               applicable law or agreed to in writing, software distributed 
under the
+               License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES 
OR
+               CONDITIONS OF ANY KIND, either express or implied. See the 
License for
+               the specific language governing permissions and limitations 
under the
+               License.
+       -->
+
+<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.apache.opencmis</groupId>
-    <artifactId>opencmis</artifactId>
-    <version>0.1-SNAPSHOT</version>
-       <relativePath>../../pom.xml</relativePath>              
-  </parent>
-  
-  <artifactId>opencmis-server-impl</artifactId>
-  <name>OpenCMIS Server Implementation</name>
-  <packaging>war</packaging>
-  
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-dependency-plugin</artifactId>
-        <executions>
-                 <execution>
-            <id>unpack</id>
-            <phase>initialize</phase>
-            <goals>
-                               <goal>unpack</goal>
-            </goals>
-            <configuration>
-                               <artifactItems>
-                                       <artifactItem>
-                                               
<groupId>org.apache.opencmis</groupId>
-                                               
<artifactId>opencmis-commons-impl</artifactId>
-                                               <version>${version}</version>
-                                               <type>jar</type>
-                                               <overWrite>true</overWrite>
-                                               <includes>wsdl/*.xsd, 
wsdl/*.wsdl</includes>
-                                       </artifactItem>
-                               </artifactItems>
-                               
<outputDirectory>${project.basedir}/src/main/webapp/WEB-INF</outputDirectory>
-                               <overWriteReleases>true</overWriteReleases>
-                               <overWriteSnapshots>true</overWriteSnapshots>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
-
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.opencmis</groupId>
-      <artifactId>opencmis-commons-api</artifactId>
-      <version>${version}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.opencmis</groupId>
-      <artifactId>opencmis-commons-impl</artifactId>
-      <version>${version}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.opencmis</groupId>
-      <artifactId>opencmis-server-spi</artifactId>
-      <version>${version}</version>
-    </dependency>
-    <dependency>
-      <groupId>javax.servlet</groupId>
-      <artifactId>servlet-api</artifactId>
-      <version>2.4</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <groupId>com.sun.xml.ws</groupId>
-      <artifactId>jaxws-rt</artifactId>
-      <version>2.1.7</version>
-      <scope>compile</scope>
-    </dependency>
-  </dependencies>
-
-  <repositories>
-    <repository>
-      <id>maven-repository.dev.java.net</id>
-      <name>Java.net Repository for Maven 1</name>
-      <url>http://download.java.net/maven/1/</url>
-      <layout>legacy</layout>
-    </repository>
-    <repository>
-      <id>maven2-repository.dev.java.net</id>
-      <name>Java.net Repository for Maven 2</name>
-      <url>http://download.java.net/maven/2/</url>
-    </repository>
-  </repositories>
-  
-  <pluginRepositories>
-    <pluginRepository>
-      <id>maven2-repository.dev.java.net</id>
-      <url>http://download.java.net/maven/2/</url>
-    </pluginRepository>
-  </pluginRepositories>  
+       <modelVersion>4.0.0</modelVersion>
+
+       <parent>
+               <groupId>org.apache.opencmis</groupId>
+               <artifactId>opencmis</artifactId>
+               <version>0.1-SNAPSHOT</version>
+               <relativePath>../../pom.xml</relativePath>
+       </parent>
+
+       <artifactId>opencmis-server-impl</artifactId>
+       <name>OpenCMIS Server Implementation</name>
+       <packaging>war</packaging>
+
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-dependency-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>unpack</id>
+                                               <phase>initialize</phase>
+                                               <goals>
+                                                       <goal>unpack</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <artifactItems>
+                                                               <artifactItem>
+                                                                       
<groupId>${project.groupId}</groupId>
+                                                                       
<artifactId>opencmis-commons-impl</artifactId>
+                                                                       
<version>${project.version}</version>
+                                                                       
<type>jar</type>
+                                                                       
<overWrite>true</overWrite>
+                                                                       
<includes>wsdl/*.xsd, wsdl/*.wsdl</includes>
+                                                               </artifactItem>
+                                                       </artifactItems>
+                                                       
<outputDirectory>${project.basedir}/src/main/webapp/WEB-INF</outputDirectory>
+                                                       
<overWriteReleases>true</overWriteReleases>
+                                                       
<overWriteSnapshots>true</overWriteSnapshots>
+                                               </configuration>
+                                       </execution>
+                               </executions>
+                       </plugin>
+               </plugins>
+       </build>
+
+       <dependencies>
+               <dependency>
+                       <groupId>${project.groupId}</groupId>
+                       <artifactId>opencmis-commons-api</artifactId>
+                       <version>${project.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>${project.groupId}</groupId>
+                       <artifactId>opencmis-commons-impl</artifactId>
+                       <version>${project.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>${project.groupId}</groupId>
+                       <artifactId>opencmis-server-spi</artifactId>
+                       <version>${project.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>javax.servlet</groupId>
+                       <artifactId>servlet-api</artifactId>
+                       <version>2.4</version>
+                       <scope>provided</scope>
+               </dependency>
+               <dependency>
+                       <groupId>com.sun.xml.ws</groupId>
+                       <artifactId>jaxws-rt</artifactId>
+                       <version>2.1.7</version>
+                       <scope>compile</scope>
+               </dependency>
+       </dependencies>
+
+       <repositories>
+               <repository>
+                       <id>maven-repository.dev.java.net</id>
+                       <name>Java.net Repository for Maven 1</name>
+                       <url>http://download.java.net/maven/1/</url>
+                       <layout>legacy</layout>
+               </repository>
+               <repository>
+                       <id>maven2-repository.dev.java.net</id>
+                       <name>Java.net Repository for Maven 2</name>
+                       <url>http://download.java.net/maven/2/</url>
+               </repository>
+       </repositories>
+
+       <pluginRepositories>
+               <pluginRepository>
+                       <id>maven2-repository.dev.java.net</id>
+                       <url>http://download.java.net/maven/2/</url>
+               </pluginRepository>
+       </pluginRepositories>
 </project>

Modified: 
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-inmemory/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-inmemory/pom.xml?rev=926046&r1=926045&r2=926046&view=diff
==============================================================================
--- 
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-inmemory/pom.xml
 (original)
+++ 
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-inmemory/pom.xml
 Mon Mar 22 12:11:23 2010
@@ -54,7 +54,7 @@
                                                <overlay>
                                                </overlay>
                                                <overlay>
-                                                       
<groupId>org.apache.opencmis</groupId>
+                                                       
<groupId>${project.groupId}</groupId>
                                                        
<artifactId>opencmis-server-impl</artifactId>
                                                </overlay>
                                        </overlays>
@@ -65,40 +65,40 @@
 
        <dependencies>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-commons-api</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.apache.opencmis</groupId>
                        <artifactId>opencmis-commons-impl</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                </dependency>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-provider-impl</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                </dependency>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-server-spi</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                </dependency>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-test-util</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                </dependency>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-server-impl</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                        <type>war</type>
                </dependency>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-server-support</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                </dependency>
        </dependencies>
 

Modified: 
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-spi/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-spi/pom.xml?rev=926046&r1=926045&r2=926046&view=diff
==============================================================================
--- 
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-spi/pom.xml 
(original)
+++ 
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-spi/pom.xml 
Mon Mar 22 12:11:23 2010
@@ -33,9 +33,9 @@
 
   <dependencies>
     <dependency>
-      <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>opencmis-commons-api</artifactId>
-      <version>${version}</version>
+      <version>${project.version}</version>
     </dependency>
   </dependencies>
 

Modified: 
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-support/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-support/pom.xml?rev=926046&r1=926045&r2=926046&view=diff
==============================================================================
--- 
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-support/pom.xml
 (original)
+++ 
incubator/chemistry/trunk/opencmis/opencmis-server/opencmis-server-support/pom.xml
 Mon Mar 22 12:11:23 2010
@@ -19,14 +19,14 @@
 
   <dependencies>
     <dependency>
-      <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>opencmis-server-spi</artifactId>
-      <version>${version}</version>
+      <version>${project.version}</version>
     </dependency>
     <dependency>
-      <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>opencmis-commons-api</artifactId>
-      <version>${version}</version>
+      <version>${project.version}</version>
     </dependency>
   </dependencies>
 

Modified: 
incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-browser-app/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-browser-app/pom.xml?rev=926046&r1=926045&r2=926046&view=diff
==============================================================================
--- 
incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-browser-app/pom.xml
 (original)
+++ 
incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-browser-app/pom.xml
 Mon Mar 22 12:11:23 2010
@@ -57,9 +57,9 @@
 
        <dependencies>
                <dependency>
-                       <groupId>org.apache.opencmis</groupId>
+                       <groupId>${project.groupId}</groupId>
                        <artifactId>opencmis-test-browser</artifactId>
-                       <version>${version}</version>
+                       <version>${project.version}</version>
                </dependency>
                <dependency>
                        <groupId>javax.servlet</groupId>

Modified: 
incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-fit/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-fit/pom.xml?rev=926046&r1=926045&r2=926046&view=diff
==============================================================================
--- incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-fit/pom.xml 
(original)
+++ incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-fit/pom.xml 
Mon Mar 22 12:11:23 2010
@@ -42,7 +42,7 @@
             <overlay>
             </overlay>
             <overlay>
-              <groupId>org.apache.opencmis</groupId>
+                     <groupId>${project.groupId}</groupId>
               <artifactId>opencmis-server-inmemory</artifactId>
             </overlay>
           </overlays>
@@ -140,29 +140,29 @@
 
   <dependencies>
     <dependency>
-      <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>opencmis-commons-api</artifactId>
-      <version>${version}</version>
+      <version>${project.version}</version>
     </dependency>  
     <dependency>
-      <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>opencmis-client-api</artifactId>
-      <version>${version}</version>
+      <version>${project.version}</version>
     </dependency>
     <dependency>
-      <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>opencmis-client-impl</artifactId>
-      <version>${version}</version>
+      <version>${project.version}</version>
     </dependency>
     <dependency>
-      <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>opencmis-provider-impl</artifactId>
-      <version>${version}</version>
+      <version>${project.version}</version>
     </dependency>
     <dependency>
-      <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>opencmis-server-inmemory</artifactId>
-      <version>${version}</version>
+      <version>${project.version}</version>
       <type>war</type>
     </dependency>
   </dependencies>

Modified: 
incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-tools/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-tools/pom.xml?rev=926046&r1=926045&r2=926046&view=diff
==============================================================================
--- 
incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-tools/pom.xml 
(original)
+++ 
incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-tools/pom.xml 
Mon Mar 22 12:11:23 2010
@@ -33,14 +33,14 @@
 
   <dependencies>
     <dependency>
-      <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>opencmis-commons-api</artifactId>
-      <version>${version}</version>
+      <version>${project.version}</version>
     </dependency>
     <dependency>
-      <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>opencmis-provider-impl</artifactId>
-      <version>${version}</version>
+      <version>${project.version}</version>
     </dependency>
   </dependencies>
   

Modified: 
incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-util/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-util/pom.xml?rev=926046&r1=926045&r2=926046&view=diff
==============================================================================
--- incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-util/pom.xml 
(original)
+++ incubator/chemistry/trunk/opencmis/opencmis-test/opencmis-test-util/pom.xml 
Mon Mar 22 12:11:23 2010
@@ -33,14 +33,14 @@
 
   <dependencies>
     <dependency>
-      <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>opencmis-commons-api</artifactId>
-      <version>${version}</version>
+      <version>${project.version}</version>
     </dependency>
     <dependency>
-      <groupId>org.apache.opencmis</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>opencmis-commons-impl</artifactId>
-      <version>${version}</version>
+      <version>${project.version}</version>
     </dependency>
   </dependencies>
 </project>
\ No newline at end of file


Reply via email to