Update of /var/cvs/applications/email
In directory james.mmbase.org:/tmp/cvs-serv7434/applications/email
Modified Files:
pom.xml
Log Message:
Improvements for the multiproject build
Kick off a full build inside /maven
See also: http://cvs.mmbase.org/viewcvs/applications/email
Index: pom.xml
===================================================================
RCS file: /var/cvs/applications/email/pom.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- pom.xml 19 Feb 2009 16:22:46 -0000 1.7
+++ pom.xml 8 Mar 2009 18:12:50 -0000 1.8
@@ -1,33 +1,60 @@
-<?xml version="1.0"?>
-<project>
+<?xml version="1.0" encoding="UTF-8"?>
+<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.mmbase</groupId>
<artifactId>mmbase-application-parent</artifactId>
- <version>1.9</version>
- <relativePath>../app-base/pom.xml</relativePath>
+ <version>1.9-SNAPSHOT</version>
</parent>
<artifactId>mmbase-email</artifactId>
<name>MMBase Email</name>
- <version>${mmbase.version}</version>
<packaging>war</packaging>
-
<dependencies>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.1</version>
</dependency>
+ <dependency>
+ <groupId>javax.activation</groupId>
+ <artifactId>activation</artifactId>
+ <version>1.1.1</version>
+ </dependency>
<dependency>
<groupId>org.mmbase</groupId>
<artifactId>mmbase-crontab</artifactId>
- <version>${mmbase.version}</version>
+ <version>${project.version}</version>
<scope>provided</scope>
<classifier>classes</classifier>
</dependency>
</dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <configuration>
+ <descriptors>
+ <descriptor>examples-assembly.xml</descriptor>
+ </descriptors>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
</project>
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs