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 2011/04/04 22:20:36 UTC

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

Author: jens
Date: Mon Apr  4 20:20:36 2011
New Revision: 1088775

URL: http://svn.apache.org/viewvc?rev=1088775&view=rev
Log:
add dependency to Servlet API CMIS-351
Improve Eclipse integration CMIS-352

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=1088775&r1=1088774&r2=1088775&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 Mon Apr  4 20:20:36 2011
@@ -83,6 +83,32 @@
                     </overlays>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-eclipse-plugin</artifactId>
+				<version>2.8</version>
+                <configuration>
+                   <wtpversion>2.0</wtpversion>
+                   <wtpContextName>inmemory</wtpContextName>
+				   <linkedResources>
+				       <linkedResource>
+					       <name>src/main/webapp/WEB-INF/sun-jaxws.xml</name> 
+						   <type>1</type> 
+						   <location>${basedir}/chemistry-opencmis-server/chemistry-opencmis-server-bindings/src/main/webapp/WEB-INF/sun-jaxws.xml</location>
+					   </linkedResource>
+				       <linkedResource>
+					       <name>src/main/webapp/WEB-INF/web.xml</name> 
+						   <type>1</type> 
+						   <location>${basedir}/chemistry-opencmis-server/chemistry-opencmis-server-bindings/src/main/webapp/WEB-INF/web.xml</location>
+					   </linkedResource>
+				       <linkedResource>
+					       <name>src/main/webapp/WEB-INF/wsdl</name> 
+						   <type>2</type> 
+						   <location>${basedir}/chemistry-opencmis-server/chemistry-opencmis-server-bindings/src/main/webapp/WEB-INF/wsdl</location>
+					   </linkedResource>
+				   </linkedResources>
+                </configuration>            
+            </plugin>
         </plugins>
     </build>
 
@@ -123,6 +149,12 @@
             <artifactId>antlr-runtime</artifactId>
             <version>3.1.3</version>
         </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+            <version>2.4</version>
+            <scope>provided</scope>
+        </dependency>
     </dependencies>
 
 </project>