You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directmemory.apache.org by ol...@apache.org on 2012/02/28 19:35:21 UTC

svn commit: r1294766 - /incubator/directmemory/trunk/server/directmemory-server/pom.xml

Author: olamy
Date: Tue Feb 28 18:35:21 2012
New Revision: 1294766

URL: http://svn.apache.org/viewvc?rev=1294766&view=rev
Log:
not a war but a jar as it users will be able to simply add a dependency and the servlet declaration

Modified:
    incubator/directmemory/trunk/server/directmemory-server/pom.xml

Modified: incubator/directmemory/trunk/server/directmemory-server/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/server/directmemory-server/pom.xml?rev=1294766&r1=1294765&r2=1294766&view=diff
==============================================================================
--- incubator/directmemory/trunk/server/directmemory-server/pom.xml (original)
+++ incubator/directmemory/trunk/server/directmemory-server/pom.xml Tue Feb 28 18:35:21 2012
@@ -29,7 +29,7 @@
   <modelVersion>4.0.0</modelVersion>
 
   <artifactId>directmemory-server</artifactId>
-  <packaging>war</packaging>
+  <packaging>jar</packaging>
   <name>Apache DirectMemory :: Server :: Server Implementation</name>
   <description>${project.name}</description>
 
@@ -51,6 +51,10 @@
       <groupId>commons-io</groupId>
       <artifactId>commons-io</artifactId>
     </dependency>
+    <!--
+      servlet 3.0 is not mandatory work with 2.5 too
+      tomcat embed for test need servlet 3.0
+    -->
     <dependency>
       <groupId>javax.servlet</groupId>
       <artifactId>javax.servlet-api</artifactId>
@@ -144,14 +148,6 @@
           </systemPropertyVariables>
         </configuration>
       </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-war-plugin</artifactId>
-        <version>2.2</version>
-        <configuration>
-          <attachClasses>true</attachClasses>
-        </configuration>
-      </plugin>
     </plugins>
   </build>