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 ba...@apache.org on 2008/07/30 17:01:14 UTC

svn commit: r681074 - in /james/mailet: base/trunk/ base/trunk/src/test/java/org/apache/james/test/mock/util/ base/trunk/stage/org.apache.james/jars/ base/trunk/stage/org.apache.james/poms/ crypto/trunk/ current/ standard/trunk/ standard/trunk/stage/or...

Author: bago
Date: Wed Jul 30 08:01:10 2008
New Revision: 681074

URL: http://svn.apache.org/viewvc?rev=681074&view=rev
Log:
Updated versions everywhere to make use consistently of 2.4-SNAPSHOT instead of 3.0-SNAPSHOT.
Updated m2 build to correctly manage dependencies between modules and test-jars for tests.
Updated stage folders to include updated generated jars (they will be used by the ant build).

Added:
    james/mailet/base/trunk/stage/org.apache.james/jars/apache-james-mailet-base-1.0-SNAPSHOT.jar   (with props)
    james/mailet/base/trunk/stage/org.apache.james/jars/mailet-2.4-SNAPSHOT.jar   (with props)
    james/mailet/base/trunk/stage/org.apache.james/poms/apache-james-mailet-base-1.0-SNAPSHOT.pom
    james/mailet/base/trunk/stage/org.apache.james/poms/mailet-2.4-SNAPSHOT.pom
    james/mailet/current/pom.xml   (with props)
    james/mailet/standard/trunk/stage/org.apache.james/jars/apache-james-mailet-base-1.0-SNAPSHOT-tests.jar   (with props)
    james/mailet/standard/trunk/stage/org.apache.james/jars/mailet-2.4-SNAPSHOT.jar   (with props)
    james/mailet/standard/trunk/stage/org.apache.james/poms/apache-james-mailet-base-1.0-SNAPSHOT.pom
    james/mailet/standard/trunk/stage/org.apache.james/poms/mailet-2.4-SNAPSHOT.pom
Removed:
    james/mailet/base/trunk/stage/org.apache.james/jars/mailet-3.0-SNAPSHOT.jar
    james/mailet/standard/trunk/stage/org.apache.james/jars/mailet-3.0-SNAPSHOT.jar
Modified:
    james/mailet/base/trunk/include.properties
    james/mailet/base/trunk/pom.xml
    james/mailet/base/trunk/src/test/java/org/apache/james/test/mock/util/MailUtil.java
    james/mailet/crypto/trunk/include.properties
    james/mailet/crypto/trunk/pom.xml
    james/mailet/current/   (props changed)
    james/mailet/standard/trunk/include.properties
    james/mailet/standard/trunk/pom.xml
    james/mailet/standard/trunk/stage/org.apache.james/jars/apache-james-mailet-base-1.0-SNAPSHOT.jar

Modified: james/mailet/base/trunk/include.properties
URL: http://svn.apache.org/viewvc/james/mailet/base/trunk/include.properties?rev=681074&r1=681073&r2=681074&view=diff
==============================================================================
--- james/mailet/base/trunk/include.properties (original)
+++ james/mailet/base/trunk/include.properties Wed Jul 30 08:01:10 2008
@@ -29,4 +29,4 @@
 javax-activation.jar=stage/activation/jars/${activation.id}.jar
 
 # ----- Mailet -----
-mailet.jar=stage/org.apache.james/jars/mailet-3.0-SNAPSHOT.jar
\ No newline at end of file
+mailet.jar=stage/org.apache.james/jars/mailet-2.4-SNAPSHOT.jar
\ No newline at end of file

Modified: james/mailet/base/trunk/pom.xml
URL: http://svn.apache.org/viewvc/james/mailet/base/trunk/pom.xml?rev=681074&r1=681073&r2=681074&view=diff
==============================================================================
--- james/mailet/base/trunk/pom.xml (original)
+++ james/mailet/base/trunk/pom.xml Wed Jul 30 08:01:10 2008
@@ -78,7 +78,13 @@
     <dependency>
       <groupId>org.apache.james</groupId>
       <artifactId>mailet</artifactId>
-      <version>3.0-SNAPSHOT</version>
+      <version>2.4-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
     </dependency>
   </dependencies>
 
@@ -122,11 +128,16 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
-        <configuration>
-          <archive>
-            <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
-          </archive>
-        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
       </plugin>
       <!-- Add NOTICE and LICENSE to generated JAR -->
       <plugin>

Modified: james/mailet/base/trunk/src/test/java/org/apache/james/test/mock/util/MailUtil.java
URL: http://svn.apache.org/viewvc/james/mailet/base/trunk/src/test/java/org/apache/james/test/mock/util/MailUtil.java?rev=681074&r1=681073&r2=681074&view=diff
==============================================================================
--- james/mailet/base/trunk/src/test/java/org/apache/james/test/mock/util/MailUtil.java (original)
+++ james/mailet/base/trunk/src/test/java/org/apache/james/test/mock/util/MailUtil.java Wed Jul 30 08:01:10 2008
@@ -19,7 +19,6 @@
 
 package org.apache.james.test.mock.util;
 
-import org.apache.james.test.mock.james.MockMailServer;
 import org.apache.james.test.mock.javaxmail.MockMimeMessage;
 import org.apache.james.test.mock.mailet.MockMail;
 import org.apache.mailet.MailAddress;
@@ -36,9 +35,16 @@
  */
 public class MailUtil {
 
+    private static int m_counter = 0;
+
+    public static String newId() {
+        m_counter++;
+        return "MockMailUtil-ID-" + m_counter;
+    }
+    
     public static MockMail createMockMail2Recipients(MimeMessage m) throws ParseException {
         MockMail mockedMail = new MockMail();
-        mockedMail.setName(MockMailServer.newId());
+        mockedMail.setName(newId());
         mockedMail.setMessage(m);
         mockedMail.setRecipients(Arrays.asList(new MailAddress[] {
                 new MailAddress("test@james.apache.org"),

Added: james/mailet/base/trunk/stage/org.apache.james/jars/apache-james-mailet-base-1.0-SNAPSHOT.jar
URL: http://svn.apache.org/viewvc/james/mailet/base/trunk/stage/org.apache.james/jars/apache-james-mailet-base-1.0-SNAPSHOT.jar?rev=681074&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/mailet/base/trunk/stage/org.apache.james/jars/apache-james-mailet-base-1.0-SNAPSHOT.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/mailet/base/trunk/stage/org.apache.james/jars/mailet-2.4-SNAPSHOT.jar
URL: http://svn.apache.org/viewvc/james/mailet/base/trunk/stage/org.apache.james/jars/mailet-2.4-SNAPSHOT.jar?rev=681074&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/mailet/base/trunk/stage/org.apache.james/jars/mailet-2.4-SNAPSHOT.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/mailet/base/trunk/stage/org.apache.james/poms/apache-james-mailet-base-1.0-SNAPSHOT.pom
URL: http://svn.apache.org/viewvc/james/mailet/base/trunk/stage/org.apache.james/poms/apache-james-mailet-base-1.0-SNAPSHOT.pom?rev=681074&view=auto
==============================================================================
--- james/mailet/base/trunk/stage/org.apache.james/poms/apache-james-mailet-base-1.0-SNAPSHOT.pom (added)
+++ james/mailet/base/trunk/stage/org.apache.james/poms/apache-james-mailet-base-1.0-SNAPSHOT.pom Wed Jul 30 08:01:10 2008
@@ -0,0 +1,179 @@
+<?xml version="1.0" encoding="ISO-8859-15"?>
+<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">
+  <!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+  
+      http://www.apache.org/licenses/LICENSE-2.0
+  
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.    
+  -->
+  <!--
+   | DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER 
+   | 
+   | This file is only intended to be used to build the jsieve
+   | website. It must not be used to build packages for jsieve
+   | library.
+   | 
+   | DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER 
+   -->
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.james</groupId>
+  <artifactId>apache-james-mailet-base</artifactId>
+  <name>Apache JAMES Basic Mailet Toolkit</name>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <description>
+    Apache JAMES Basic Mailet Toolkit
+  </description>
+  <parent>
+    <groupId>org.apache.james</groupId>
+    <artifactId>james-project</artifactId>
+    <version>1.1</version>
+    <relativePath>stage/org.apache.james/poms/james-project-1.1.pom</relativePath>
+  </parent>
+  <url>http://james.apache.org/mailet/base</url>
+  <inceptionYear>2008</inceptionYear>
+
+  <distributionManagement>
+    <site>
+      <id>mailet-base-website</id>
+      <url>scp://people.apache.org/www/james.apache.org/mailet/base</url>
+    </site>
+  </distributionManagement>
+
+  <issueManagement>
+    <system>JIRA</system>
+    <url>http://issues.apache.org/jira/browse/MAILET</url>
+  </issueManagement>
+
+  <scm>
+    <connection>
+      scm:svn:http://svn.apache.org/repos/asf/james/mailet/base/trunk
+    </connection>
+    <developerConnection>
+      scm:svn:https://svn.apache.org/repos/asf/james/mailet/base/trunk
+    </developerConnection>
+    <url>
+      http://svn.apache.org/viewcvs.cgi/james/mailet/base/trunk/?root=Apache-SVN
+    </url>
+  </scm>
+
+  <dependencies>
+    <dependency>
+      <groupId>javax.mail</groupId>
+      <artifactId>mail</artifactId>
+      <version>1.4</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>mailet</artifactId>
+      <version>2.4-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+	<repositories>
+    <repository>
+      <id>mailet-stage-repository</id>
+      <name>Stage repository</name>
+      <url>file://${basedir}/stage</url>
+      <layout>legacy</layout>
+      <releases>
+        <enabled>true</enabled>
+        <checksumPolicy>ignore</checksumPolicy>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+        <checksumPolicy>ignore</checksumPolicy>
+      </snapshots>
+    </repository>
+	</repositories>
+
+  <mailingLists>
+    <mailingList>
+	    <name>Apache JAMES Server List</name>
+	    <subscribe>server-dev-subscribe@james.apache.org</subscribe>
+	    <unsubscribe>server-dev-unsubscribe@james.apache.org</unsubscribe>
+	    <post>server-dev@james.apache.org</post>
+	    <archive>http://mail-archives.apache.org/mod_mbox/james-server-dev/</archive>
+    </mailingList>
+  </mailingLists>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <optimize>true</optimize>
+          <source>1.4</source>
+          <target>1.4</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <!-- Add NOTICE and LICENSE to generated JAR -->
+      <plugin>
+        <artifactId>maven-remote-resources-plugin</artifactId>
+        <version>1.0-alpha-5</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>process</goal>
+            </goals>
+            <configuration>
+              <resourceBundles>
+                <resourceBundle>org.apache:apache-jar-resource-bundle:1.2</resourceBundle>
+              </resourceBundles>
+              <properties>
+	              <!--  <preProjectText>PRE PROCESS TEXT</preProjectText>  -->
+	              <postProjectText>This file is automatically generated by dependencies declared in pom.xml</postProjectText>
+	              <addLicense>true</addLicense>
+              </properties>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+  
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>jxr-maven-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+  
+</project>
\ No newline at end of file

Added: james/mailet/base/trunk/stage/org.apache.james/poms/mailet-2.4-SNAPSHOT.pom
URL: http://svn.apache.org/viewvc/james/mailet/base/trunk/stage/org.apache.james/poms/mailet-2.4-SNAPSHOT.pom?rev=681074&view=auto
==============================================================================
--- james/mailet/base/trunk/stage/org.apache.james/poms/mailet-2.4-SNAPSHOT.pom (added)
+++ james/mailet/base/trunk/stage/org.apache.james/poms/mailet-2.4-SNAPSHOT.pom Wed Jul 30 08:01:10 2008
@@ -0,0 +1,222 @@
+<?xml version="1.0" encoding="ISO-8859-15"?>
+<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">
+  <!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+  
+      http://www.apache.org/licenses/LICENSE-2.0
+  
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.    
+  -->
+  <!--
+   | DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER 
+   | 
+   | This file is only intended to be used to build the jsieve
+   | website. It must not be used to build packages for jsieve
+   | library.
+   | 
+   | DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER 
+   -->
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.james</groupId>
+  <artifactId>mailet</artifactId>
+  <name>Apache Mailet API</name>
+  <version>2.4-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <description>
+    Apache Mailet API
+  </description>
+  <parent>
+    <groupId>org.apache.james</groupId>
+    <artifactId>james-project</artifactId>
+    <version>1.2</version>
+    <relativePath>../james-project/project/pom.xml</relativePath>
+  </parent>
+  <url>http://james.apache.org/mailet</url>
+  <inceptionYear>2007</inceptionYear>
+
+  <distributionManagement>
+    <site>
+      <id>mailet-website</id>
+      <url>scp://people.apache.org/www/james.apache.org/mailet/</url>
+    </site>
+  </distributionManagement>
+
+  <ciManagement>
+     <system>Gump</system>
+     <url>http://vmgump.apache.org/gump/public/james-mailet/james-mailet/index.html</url>
+  </ciManagement>
+
+  <issueManagement>
+    <system>JIRA</system>
+    <url>http://issues.apache.org/jira/browse/MAILET</url>
+  </issueManagement>
+
+  <scm>
+    <connection>
+      scm:svn:http://svn.apache.org/repos/asf/james/mailet/api/trunk
+    </connection>
+    <developerConnection>
+      scm:svn:https://svn.apache.org/repos/asf/james/mailet/api/trunk
+    </developerConnection>
+    <url>
+      http://svn.apache.org/viewcvs.cgi/james/mailet/api/trunk/?root=Apache-SVN
+    </url>
+  </scm>
+
+  <!-- This is here because of http://jira.codehaus.org/browse/MRRESOURCES-6 -->
+  <properties>
+    <maven.test.skip>true</maven.test.skip>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>javax.mail</groupId>
+      <artifactId>mail</artifactId>
+      <version>1.4</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+	<repositories>
+    <repository>
+      <id>mailet-stage-repository</id>
+      <name>Mailet stage repository</name>
+      <url>file://${basedir}/stage</url>
+      <layout>legacy</layout>
+      <releases>
+        <enabled>true</enabled>
+        <checksumPolicy>ignore</checksumPolicy>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+        <checksumPolicy>ignore</checksumPolicy>
+      </snapshots>
+    </repository>
+	</repositories>
+
+  <mailingLists>
+    <mailingList>
+	    <name>Apache Mailet API List</name>
+	    <subscribe>mailet-api-subscribe@james.apache.org</subscribe>
+	    <unsubscribe>mailet-api--unsubscribe@james.apache.org</unsubscribe>
+	    <post>mailet-api-@james.apache.org</post>
+	    <archive>http://mail-archives.apache.org/mod_mbox/james-mailet-api/</archive>
+    </mailingList>
+  </mailingLists>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <optimize>true</optimize>
+          <source>1.4</source>
+          <target>1.4</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Specification-Title>Apache Mailet API</Specification-Title>
+              <Specification-Version>${pom.version}</Specification-Version>
+              <Specification-Vendor>The Apache Software Foundation</Specification-Vendor>
+              <Implementation-Title>Apache Mailet API</Implementation-Title>
+              <Implementation-Version>${pom.version}</Implementation-Version>
+              <Implementation-Vendor>The Apache Software Foundation</Implementation-Vendor>
+              <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
+              <url>${pom.url}</url>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+      <!-- Add NOTICE and LICENSE to generated JAR -->
+      <plugin>
+        <artifactId>maven-remote-resources-plugin</artifactId>
+        <version>1.0-alpha-5</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>process</goal>
+            </goals>
+            <configuration>
+              <resourceBundles>
+                <resourceBundle>org.apache:apache-jar-resource-bundle:1.2</resourceBundle>
+              </resourceBundles>
+              <properties>
+	              <!--  <preProjectText>PRE PROCESS TEXT</preProjectText>  -->
+	              <postProjectText>This file is automatically generated by dependencies declared in pom.xml</postProjectText>
+	              <addLicense>true</addLicense>
+              </properties>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+  
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <version>2.4.3</version>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+        <version>2.4.3</version>
+      </plugin> 
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.4</version>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jxr-plugin</artifactId>
+        <version>2.1</version>
+      </plugin>
+            <plugin>
+        <artifactId>maven-site-plugin</artifactId>
+        <version>2.0-beta-6</version>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>rat-maven-plugin</artifactId>
+        <version>1.0-alpha-3</version>
+        <configuration>
+          <excludes>
+            <exclude>NOTICE.txt</exclude>
+            <exclude>LICENSE.txt</exclude>
+            <!-- Generated by Maven -->
+            <exclude>release.properties</exclude>
+            <exclude>dist/**/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>taglist-maven-plugin</artifactId>
+        <version>2.2</version>
+      </plugin>
+    </plugins>
+  </reporting>
+  
+</project>
\ No newline at end of file

Modified: james/mailet/crypto/trunk/include.properties
URL: http://svn.apache.org/viewvc/james/mailet/crypto/trunk/include.properties?rev=681074&r1=681073&r2=681074&view=diff
==============================================================================
--- james/mailet/crypto/trunk/include.properties (original)
+++ james/mailet/crypto/trunk/include.properties Wed Jul 30 08:01:10 2008
@@ -29,7 +29,7 @@
 javax-activation.jar=stage/javax.activation/jars/${activation.id}.jar
 
 # ----- Mailet -----
-mailet.jar=stage/org.apache.james/jars/mailet-3.0-SNAPSHOT.jar
+mailet.jar=stage/org.apache.james/jars/mailet-2.4-SNAPSHOT.jar
 
 # ----- Bouncy Castle -----
 bc-workaround.jar=stage/org.bouncycastle/jars/bcmail-jdk14-workaround-129.jar

Modified: james/mailet/crypto/trunk/pom.xml
URL: http://svn.apache.org/viewvc/james/mailet/crypto/trunk/pom.xml?rev=681074&r1=681073&r2=681074&view=diff
==============================================================================
--- james/mailet/crypto/trunk/pom.xml (original)
+++ james/mailet/crypto/trunk/pom.xml Wed Jul 30 08:01:10 2008
@@ -73,7 +73,7 @@
     <dependency>
       <groupId>javax.mail</groupId>
       <artifactId>mail</artifactId>
-      <version>1.4</version>
+      <version>1.4.1</version>
     </dependency>
     <dependency>
       <groupId>org.bouncycastle</groupId>
@@ -88,7 +88,12 @@
     <dependency>
       <groupId>org.apache.james</groupId>
       <artifactId>mailet</artifactId>
-      <version>3.0-SNAPSHOT</version>
+      <version>2.4-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>apache-james-mailet-base</artifactId>
+      <version>1.0-SNAPSHOT</version>
     </dependency>
   </dependencies>
 
@@ -132,11 +137,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
-        <configuration>
-          <archive>
-            <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
-          </archive>
-        </configuration>
       </plugin>
       <!-- Add NOTICE and LICENSE to generated JAR -->
       <plugin>

Propchange: james/mailet/current/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Jul 30 08:01:10 2008
@@ -0,0 +1,9 @@
+target
+
+.settings
+
+.project
+
+.classpath
+
+stage

Added: james/mailet/current/pom.xml
URL: http://svn.apache.org/viewvc/james/mailet/current/pom.xml?rev=681074&view=auto
==============================================================================
--- james/mailet/current/pom.xml (added)
+++ james/mailet/current/pom.xml Wed Jul 30 08:01:10 2008
@@ -0,0 +1,170 @@
+<?xml version="1.0" encoding="ISO-8859-15"?>
+<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">
+  <!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+  
+      http://www.apache.org/licenses/LICENSE-2.0
+  
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.    
+  -->
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.james</groupId>
+  <artifactId>mailet-project</artifactId>
+  <name>Apache JAMES Mailet Project</name>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <description>
+    Apache JAMES Mailet Project
+  </description>
+  <parent>
+    <groupId>org.apache.james</groupId>
+    <artifactId>james-project</artifactId>
+    <version>1.1</version>
+  </parent>
+  <url>http://james.apache.org/mailet</url>
+  <inceptionYear>2008</inceptionYear>
+  
+  <modules>
+    <module>api</module>
+    <module>base</module>
+    <module>crypto</module>
+    <module>standard</module>
+  </modules>
+
+  <distributionManagement>
+    <site>
+      <id>standard-mailet-website</id>
+      <url>scp://people.apache.org/www/james.apache.org/mailet/standard</url>
+    </site>
+  </distributionManagement>
+
+  <issueManagement>
+    <system>JIRA</system>
+    <url>http://issues.apache.org/jira/browse/MAILET</url>
+  </issueManagement>
+
+  <scm>
+    <connection>
+      scm:svn:http://svn.apache.org/repos/asf/james/mailet/standard/trunk
+    </connection>
+    <developerConnection>
+      scm:svn:https://svn.apache.org/repos/asf/james/mailet/standard/trunk
+    </developerConnection>
+    <url>
+      http://svn.apache.org/viewcvs.cgi/james/mailet/standard/trunk/?root=Apache-SVN
+    </url>
+  </scm>
+
+  <dependencies>
+    <dependency>
+      <groupId>javax.mail</groupId>
+      <artifactId>mail</artifactId>
+      <version>1.4</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>apache-james-mailet-base</artifactId>
+      <version>1.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>mailet</artifactId>
+      <version>3.0-SNAPSHOT</version>
+    </dependency>
+  </dependencies>
+
+	<repositories>
+    <repository>
+      <id>mailet-stage-repository</id>
+      <name>Stage repository</name>
+      <url>file://${basedir}/stage</url>
+      <layout>legacy</layout>
+      <releases>
+        <enabled>true</enabled>
+        <checksumPolicy>ignore</checksumPolicy>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+        <checksumPolicy>ignore</checksumPolicy>
+      </snapshots>
+    </repository>
+	</repositories>
+
+  <mailingLists>
+    <mailingList>
+	    <name>Apache JAMES Server List</name>
+	    <subscribe>server-dev-subscribe@james.apache.org</subscribe>
+	    <unsubscribe>server-dev-unsubscribe@james.apache.org</unsubscribe>
+	    <post>server-dev@james.apache.org</post>
+	    <archive>http://mail-archives.apache.org/mod_mbox/james-server-dev/</archive>
+    </mailingList>
+  </mailingLists>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <optimize>true</optimize>
+          <source>1.4</source>
+          <target>1.4</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
+          </archive>
+        </configuration>
+      </plugin>
+      <!-- Add NOTICE and LICENSE to generated JAR -->
+      <plugin>
+        <artifactId>maven-remote-resources-plugin</artifactId>
+        <version>1.0-alpha-5</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>process</goal>
+            </goals>
+            <configuration>
+              <resourceBundles>
+                <resourceBundle>org.apache:apache-jar-resource-bundle:1.2</resourceBundle>
+              </resourceBundles>
+              <properties>
+	              <!--  <preProjectText>PRE PROCESS TEXT</preProjectText>  -->
+	              <postProjectText>This file is automatically generated by dependencies declared in pom.xml</postProjectText>
+	              <addLicense>true</addLicense>
+              </properties>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+  
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>jxr-maven-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+  
+</project>
\ No newline at end of file

Propchange: james/mailet/current/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: james/mailet/current/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: james/mailet/standard/trunk/include.properties
URL: http://svn.apache.org/viewvc/james/mailet/standard/trunk/include.properties?rev=681074&r1=681073&r2=681074&view=diff
==============================================================================
--- james/mailet/standard/trunk/include.properties (original)
+++ james/mailet/standard/trunk/include.properties Wed Jul 30 08:01:10 2008
@@ -29,5 +29,5 @@
 javax-activation.jar=stage/activation/jars/${activation.id}.jar
 
 # ----- Mailet -----
-mailet.jar=stage/org.apache.james/jars/mailet-3.0-SNAPSHOT.jar
+mailet.jar=stage/org.apache.james/jars/mailet-2.4-SNAPSHOT.jar
 mailet-base.jar=stage/org.apache.james/jars/apache-james-mailet-base-1.0-SNAPSHOT.jar
\ No newline at end of file

Modified: james/mailet/standard/trunk/pom.xml
URL: http://svn.apache.org/viewvc/james/mailet/standard/trunk/pom.xml?rev=681074&r1=681073&r2=681074&view=diff
==============================================================================
--- james/mailet/standard/trunk/pom.xml (original)
+++ james/mailet/standard/trunk/pom.xml Wed Jul 30 08:01:10 2008
@@ -77,13 +77,26 @@
     </dependency>
     <dependency>
       <groupId>org.apache.james</groupId>
-      <artifactId>apache-james-mailet-base</artifactId>
+      <artifactId>apache-james-mailet-base</artifactId>
       <version>1.0-SNAPSHOT</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.james</groupId>
-      <artifactId>mailet</artifactId>
-      <version>3.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>apache-james-mailet-base</artifactId>
+      <type>test-jar</type>
+      <scope>test</scope>
+      <version>1.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>mailet</artifactId>
+      <version>2.4-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
     </dependency>
   </dependencies>
 
@@ -127,11 +140,16 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
-        <configuration>
-          <archive>
-            <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
-          </archive>
-        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
       </plugin>
       <!-- Add NOTICE and LICENSE to generated JAR -->
       <plugin>

Added: james/mailet/standard/trunk/stage/org.apache.james/jars/apache-james-mailet-base-1.0-SNAPSHOT-tests.jar
URL: http://svn.apache.org/viewvc/james/mailet/standard/trunk/stage/org.apache.james/jars/apache-james-mailet-base-1.0-SNAPSHOT-tests.jar?rev=681074&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/mailet/standard/trunk/stage/org.apache.james/jars/apache-james-mailet-base-1.0-SNAPSHOT-tests.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: james/mailet/standard/trunk/stage/org.apache.james/jars/apache-james-mailet-base-1.0-SNAPSHOT.jar
URL: http://svn.apache.org/viewvc/james/mailet/standard/trunk/stage/org.apache.james/jars/apache-james-mailet-base-1.0-SNAPSHOT.jar?rev=681074&r1=681073&r2=681074&view=diff
==============================================================================
Binary files - no diff available.

Added: james/mailet/standard/trunk/stage/org.apache.james/jars/mailet-2.4-SNAPSHOT.jar
URL: http://svn.apache.org/viewvc/james/mailet/standard/trunk/stage/org.apache.james/jars/mailet-2.4-SNAPSHOT.jar?rev=681074&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/mailet/standard/trunk/stage/org.apache.james/jars/mailet-2.4-SNAPSHOT.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/mailet/standard/trunk/stage/org.apache.james/poms/apache-james-mailet-base-1.0-SNAPSHOT.pom
URL: http://svn.apache.org/viewvc/james/mailet/standard/trunk/stage/org.apache.james/poms/apache-james-mailet-base-1.0-SNAPSHOT.pom?rev=681074&view=auto
==============================================================================
--- james/mailet/standard/trunk/stage/org.apache.james/poms/apache-james-mailet-base-1.0-SNAPSHOT.pom (added)
+++ james/mailet/standard/trunk/stage/org.apache.james/poms/apache-james-mailet-base-1.0-SNAPSHOT.pom Wed Jul 30 08:01:10 2008
@@ -0,0 +1,179 @@
+<?xml version="1.0" encoding="ISO-8859-15"?>
+<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">
+  <!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+  
+      http://www.apache.org/licenses/LICENSE-2.0
+  
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.    
+  -->
+  <!--
+   | DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER 
+   | 
+   | This file is only intended to be used to build the jsieve
+   | website. It must not be used to build packages for jsieve
+   | library.
+   | 
+   | DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER 
+   -->
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.james</groupId>
+  <artifactId>apache-james-mailet-base</artifactId>
+  <name>Apache JAMES Basic Mailet Toolkit</name>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <description>
+    Apache JAMES Basic Mailet Toolkit
+  </description>
+  <parent>
+    <groupId>org.apache.james</groupId>
+    <artifactId>james-project</artifactId>
+    <version>1.1</version>
+    <relativePath>stage/org.apache.james/poms/james-project-1.1.pom</relativePath>
+  </parent>
+  <url>http://james.apache.org/mailet/base</url>
+  <inceptionYear>2008</inceptionYear>
+
+  <distributionManagement>
+    <site>
+      <id>mailet-base-website</id>
+      <url>scp://people.apache.org/www/james.apache.org/mailet/base</url>
+    </site>
+  </distributionManagement>
+
+  <issueManagement>
+    <system>JIRA</system>
+    <url>http://issues.apache.org/jira/browse/MAILET</url>
+  </issueManagement>
+
+  <scm>
+    <connection>
+      scm:svn:http://svn.apache.org/repos/asf/james/mailet/base/trunk
+    </connection>
+    <developerConnection>
+      scm:svn:https://svn.apache.org/repos/asf/james/mailet/base/trunk
+    </developerConnection>
+    <url>
+      http://svn.apache.org/viewcvs.cgi/james/mailet/base/trunk/?root=Apache-SVN
+    </url>
+  </scm>
+
+  <dependencies>
+    <dependency>
+      <groupId>javax.mail</groupId>
+      <artifactId>mail</artifactId>
+      <version>1.4</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>mailet</artifactId>
+      <version>2.4-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+	<repositories>
+    <repository>
+      <id>mailet-stage-repository</id>
+      <name>Stage repository</name>
+      <url>file://${basedir}/stage</url>
+      <layout>legacy</layout>
+      <releases>
+        <enabled>true</enabled>
+        <checksumPolicy>ignore</checksumPolicy>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+        <checksumPolicy>ignore</checksumPolicy>
+      </snapshots>
+    </repository>
+	</repositories>
+
+  <mailingLists>
+    <mailingList>
+	    <name>Apache JAMES Server List</name>
+	    <subscribe>server-dev-subscribe@james.apache.org</subscribe>
+	    <unsubscribe>server-dev-unsubscribe@james.apache.org</unsubscribe>
+	    <post>server-dev@james.apache.org</post>
+	    <archive>http://mail-archives.apache.org/mod_mbox/james-server-dev/</archive>
+    </mailingList>
+  </mailingLists>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <optimize>true</optimize>
+          <source>1.4</source>
+          <target>1.4</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <!-- Add NOTICE and LICENSE to generated JAR -->
+      <plugin>
+        <artifactId>maven-remote-resources-plugin</artifactId>
+        <version>1.0-alpha-5</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>process</goal>
+            </goals>
+            <configuration>
+              <resourceBundles>
+                <resourceBundle>org.apache:apache-jar-resource-bundle:1.2</resourceBundle>
+              </resourceBundles>
+              <properties>
+	              <!--  <preProjectText>PRE PROCESS TEXT</preProjectText>  -->
+	              <postProjectText>This file is automatically generated by dependencies declared in pom.xml</postProjectText>
+	              <addLicense>true</addLicense>
+              </properties>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+  
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>jxr-maven-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+  
+</project>
\ No newline at end of file

Added: james/mailet/standard/trunk/stage/org.apache.james/poms/mailet-2.4-SNAPSHOT.pom
URL: http://svn.apache.org/viewvc/james/mailet/standard/trunk/stage/org.apache.james/poms/mailet-2.4-SNAPSHOT.pom?rev=681074&view=auto
==============================================================================
--- james/mailet/standard/trunk/stage/org.apache.james/poms/mailet-2.4-SNAPSHOT.pom (added)
+++ james/mailet/standard/trunk/stage/org.apache.james/poms/mailet-2.4-SNAPSHOT.pom Wed Jul 30 08:01:10 2008
@@ -0,0 +1,222 @@
+<?xml version="1.0" encoding="ISO-8859-15"?>
+<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">
+  <!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+  
+      http://www.apache.org/licenses/LICENSE-2.0
+  
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.    
+  -->
+  <!--
+   | DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER 
+   | 
+   | This file is only intended to be used to build the jsieve
+   | website. It must not be used to build packages for jsieve
+   | library.
+   | 
+   | DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER 
+   -->
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.james</groupId>
+  <artifactId>mailet</artifactId>
+  <name>Apache Mailet API</name>
+  <version>2.4-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <description>
+    Apache Mailet API
+  </description>
+  <parent>
+    <groupId>org.apache.james</groupId>
+    <artifactId>james-project</artifactId>
+    <version>1.2</version>
+    <relativePath>../james-project/project/pom.xml</relativePath>
+  </parent>
+  <url>http://james.apache.org/mailet</url>
+  <inceptionYear>2007</inceptionYear>
+
+  <distributionManagement>
+    <site>
+      <id>mailet-website</id>
+      <url>scp://people.apache.org/www/james.apache.org/mailet/</url>
+    </site>
+  </distributionManagement>
+
+  <ciManagement>
+     <system>Gump</system>
+     <url>http://vmgump.apache.org/gump/public/james-mailet/james-mailet/index.html</url>
+  </ciManagement>
+
+  <issueManagement>
+    <system>JIRA</system>
+    <url>http://issues.apache.org/jira/browse/MAILET</url>
+  </issueManagement>
+
+  <scm>
+    <connection>
+      scm:svn:http://svn.apache.org/repos/asf/james/mailet/api/trunk
+    </connection>
+    <developerConnection>
+      scm:svn:https://svn.apache.org/repos/asf/james/mailet/api/trunk
+    </developerConnection>
+    <url>
+      http://svn.apache.org/viewcvs.cgi/james/mailet/api/trunk/?root=Apache-SVN
+    </url>
+  </scm>
+
+  <!-- This is here because of http://jira.codehaus.org/browse/MRRESOURCES-6 -->
+  <properties>
+    <maven.test.skip>true</maven.test.skip>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>javax.mail</groupId>
+      <artifactId>mail</artifactId>
+      <version>1.4</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+	<repositories>
+    <repository>
+      <id>mailet-stage-repository</id>
+      <name>Mailet stage repository</name>
+      <url>file://${basedir}/stage</url>
+      <layout>legacy</layout>
+      <releases>
+        <enabled>true</enabled>
+        <checksumPolicy>ignore</checksumPolicy>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+        <checksumPolicy>ignore</checksumPolicy>
+      </snapshots>
+    </repository>
+	</repositories>
+
+  <mailingLists>
+    <mailingList>
+	    <name>Apache Mailet API List</name>
+	    <subscribe>mailet-api-subscribe@james.apache.org</subscribe>
+	    <unsubscribe>mailet-api--unsubscribe@james.apache.org</unsubscribe>
+	    <post>mailet-api-@james.apache.org</post>
+	    <archive>http://mail-archives.apache.org/mod_mbox/james-mailet-api/</archive>
+    </mailingList>
+  </mailingLists>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <optimize>true</optimize>
+          <source>1.4</source>
+          <target>1.4</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Specification-Title>Apache Mailet API</Specification-Title>
+              <Specification-Version>${pom.version}</Specification-Version>
+              <Specification-Vendor>The Apache Software Foundation</Specification-Vendor>
+              <Implementation-Title>Apache Mailet API</Implementation-Title>
+              <Implementation-Version>${pom.version}</Implementation-Version>
+              <Implementation-Vendor>The Apache Software Foundation</Implementation-Vendor>
+              <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
+              <url>${pom.url}</url>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+      <!-- Add NOTICE and LICENSE to generated JAR -->
+      <plugin>
+        <artifactId>maven-remote-resources-plugin</artifactId>
+        <version>1.0-alpha-5</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>process</goal>
+            </goals>
+            <configuration>
+              <resourceBundles>
+                <resourceBundle>org.apache:apache-jar-resource-bundle:1.2</resourceBundle>
+              </resourceBundles>
+              <properties>
+	              <!--  <preProjectText>PRE PROCESS TEXT</preProjectText>  -->
+	              <postProjectText>This file is automatically generated by dependencies declared in pom.xml</postProjectText>
+	              <addLicense>true</addLicense>
+              </properties>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+  
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <version>2.4.3</version>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+        <version>2.4.3</version>
+      </plugin> 
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.4</version>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jxr-plugin</artifactId>
+        <version>2.1</version>
+      </plugin>
+            <plugin>
+        <artifactId>maven-site-plugin</artifactId>
+        <version>2.0-beta-6</version>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>rat-maven-plugin</artifactId>
+        <version>1.0-alpha-3</version>
+        <configuration>
+          <excludes>
+            <exclude>NOTICE.txt</exclude>
+            <exclude>LICENSE.txt</exclude>
+            <!-- Generated by Maven -->
+            <exclude>release.properties</exclude>
+            <exclude>dist/**/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>taglist-maven-plugin</artifactId>
+        <version>2.2</version>
+      </plugin>
+    </plugins>
+  </reporting>
+  
+</project>
\ No newline at end of file



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