Author: norman
Date: Fri Jan  8 17:38:55 2010
New Revision: 897272

URL: http://svn.apache.org/viewvc?rev=897272&view=rev
Log:
update mpt

Added:
    
james/server/trunk/stage/org.apache.james/jars/maven-mpt-plugin-0.2-SNAPSHOT.jar
   (with props)
    
james/server/trunk/stage/org.apache.james/poms/maven-mpt-plugin-0.2-SNAPSHOT.pom

Added: 
james/server/trunk/stage/org.apache.james/jars/maven-mpt-plugin-0.2-SNAPSHOT.jar
URL: 
http://svn.apache.org/viewvc/james/server/trunk/stage/org.apache.james/jars/maven-mpt-plugin-0.2-SNAPSHOT.jar?rev=897272&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/server/trunk/stage/org.apache.james/jars/maven-mpt-plugin-0.2-SNAPSHOT.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
james/server/trunk/stage/org.apache.james/poms/maven-mpt-plugin-0.2-SNAPSHOT.pom
URL: 
http://svn.apache.org/viewvc/james/server/trunk/stage/org.apache.james/poms/maven-mpt-plugin-0.2-SNAPSHOT.pom?rev=897272&view=auto
==============================================================================
--- 
james/server/trunk/stage/org.apache.james/poms/maven-mpt-plugin-0.2-SNAPSHOT.pom
 (added)
+++ 
james/server/trunk/stage/org.apache.james/poms/maven-mpt-plugin-0.2-SNAPSHOT.pom
 Fri Jan  8 17:38:55 2010
@@ -0,0 +1,135 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.    
+-->
+<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";>
+  <parent>
+    <artifactId>apache-james-mpt-project</artifactId>
+    <groupId>org.apache.james</groupId>
+    <version>0.2-SNAPSHOT</version>
+    <!-- Either this really points to the james-project/pom.xml or you
+         will have to tune the local repository, later, in this file -->
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.james</groupId>
+  <artifactId>maven-mpt-plugin</artifactId>
+  <name>Apache JAMES MPT Maven2 Plugin</name>
+  <description>Apache JAMES Mail Protocol Tester (MPT) is a library providing 
a framework for the 
+scritable functional testing of ASCII based line protocols. This Maven2 Plugin 
 is an easy interface
+to the library requiring no extra coding.</description>
+  <url>http://james.apache.org/mpt/mavenplugin</url>
+  <packaging>maven-plugin</packaging>
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>apache-james-mpt-main</artifactId>
+      <!-- TODO: Use dependency from project pom -->
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-plugin-api</artifactId>
+      <version>2.0</version>
+    </dependency>  
+    <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>apache-james-mpt-main</artifactId>
+        <!-- TODO: Use dependency from project pom -->
+        <version>${project.version}</version>
+        <type>test-jar</type>
+        <scope>test</scope>
+    </dependency>
+    
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <version>2.2</version>
+        <configuration>
+        <!-- 
+        <archive>
+          
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+            <manifestEntries>
+              <Specification-Title>Apache James MPT Maven2 
Plogin</Specification-Title>
+              <Specification-Version>${pom.version}</Specification-Version>
+              <Specification-Vendor>The Apache Software 
Foundation</Specification-Vendor>
+              <Implementation-Title>Apache James MPT Maven2 
Plugin</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>
+      <!-- 
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <version>1.4.3</version>
+        <executions>
+                <execution>
+                        <id>bundle-manifest</id>
+                        <phase>process-classes</phase>
+                        <goals>
+                                <goal>manifest</goal>
+                        </goals>
+                </execution>
+        </executions>
+        <extensions>true</extensions>
+        <configuration>
+                <instructions>
+                        
<Export-Package>org.apache.james.mpt.maven</Export-Package>
+                        <Embed-Dependency>*;scope=runtime</Embed-Dependency>
+                </instructions>
+        </configuration>
+      </plugin>
+      -->
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.4</version>
+        <executions>
+          <execution>
+            <id>create-javadocs</id> 
+            <phase>package</phase> 
+            <goals>
+              <goal>javadoc</goal> 
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+  
+  <scm>
+    
<connection>scm:svn:http://svn.apache.org/repos/asf/james/mpt/trunk/maven</connection>
+    
<developerConnection>scm:svn:https://[email protected]/repos/asf/james/mpt/trunk/maven</developerConnection>
+    
<url>http://svn.apache.org/viewcvs.cgi/james/mpt/trunk/maven?root=Apache-SVN</url>
+  </scm>
+
+</project>



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to