You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by rd...@apache.org on 2011/06/06 17:49:15 UTC

svn commit: r1132681 - /james/server/trunk/mailetcontainer-library/pom.xml

Author: rdonkin
Date: Mon Jun  6 15:49:15 2011
New Revision: 1132681

URL: http://svn.apache.org/viewvc?rev=1132681&view=rev
Log:
JAMES-1262 Test jar is required by another module but adding execution to parent results in failure for pom build.

Modified:
    james/server/trunk/mailetcontainer-library/pom.xml

Modified: james/server/trunk/mailetcontainer-library/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/mailetcontainer-library/pom.xml?rev=1132681&r1=1132680&r2=1132681&view=diff
==============================================================================
--- james/server/trunk/mailetcontainer-library/pom.xml (original)
+++ james/server/trunk/mailetcontainer-library/pom.xml Mon Jun  6 15:49:15 2011
@@ -27,6 +27,33 @@
   <groupId>org.apache.james</groupId>
   <artifactId>james-server-mailetcontainer-library</artifactId>
   <name>Apache James Server Mailetcontainer library</name>
+   <build>
+     <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <!-- This configuration is used by all goals -->
+        <configuration>
+          <archive>
+            <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+            <manifest>
+              <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+            </manifest>
+          </archive>
+        </configuration>
+        <executions>
+          <execution>
+            <goals>
+              <goal>jar</goal>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+   </build>
+
   <dependencies>
     <dependency>
       <groupId>org.apache.james</groupId>



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org