You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by je...@apache.org on 2013/05/01 17:47:04 UTC

svn commit: r1478058 - /chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/pom.xml

Author: jens
Date: Wed May  1 15:47:04 2013
New Revision: 1478058

URL: http://svn.apache.org/r1478058
Log:
InMemory: change dependencies to server bindings using the new jar to get better eclipse integration

Modified:
    chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/pom.xml

Modified: chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/pom.xml
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/pom.xml?rev=1478058&r1=1478057&r2=1478058&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/pom.xml (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/pom.xml Wed May  1 15:47:04 2013
@@ -61,6 +61,7 @@
 				<artifactId>maven-eclipse-plugin</artifactId>
 				<version>2.9</version>
 				<configuration>
+                    <useProjectReferences>true</useProjectReferences>
 					<wtpversion>2.0</wtpversion>
 					<wtpContextName>inmemory</wtpContextName>
 					<linkedResources>
@@ -139,14 +140,15 @@
         </dependency>
         <dependency>
             <groupId>${project.groupId}</groupId>
-            <artifactId>chemistry-opencmis-server-bindings</artifactId>
+            <artifactId>chemistry-opencmis-server-bindings-classes</artifactId>
             <version>${project.version}</version>
-            <type>war</type>
         </dependency>
         <dependency>
-            <groupId>org.antlr</groupId>
-            <artifactId>antlr-runtime</artifactId>
-            <version>3.2</version>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>chemistry-opencmis-server-bindings</artifactId>
+            <version>${project.version}</version>
+            <scope>provided</scope>
+            <type>war</type>
         </dependency>
         <dependency>
             <groupId>javax.servlet</groupId>
@@ -159,17 +161,6 @@
             <artifactId>slf4j-log4j12</artifactId>
             <version>${slf4j.version}</version>          
         </dependency>
-        <!-- copy the dependencies from the server bindings here, because mvn eclipse ignores them from a .war -->
-        <dependency>
-            <groupId>commons-lang</groupId>
-            <artifactId>commons-lang</artifactId>
-            <version>2.6</version>
-        </dependency>
-        <dependency>
-            <groupId>commons-io</groupId>
-            <artifactId>commons-io</artifactId>
-            <version>2.0.1</version>
-        </dependency>                     
 	</dependencies>
 
 </project>