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/08/22 21:42:18 UTC

svn commit: r688183 - in /james/mailet/standard/trunk: pom.xml stage/org.apache.james/maven-plugins/ stage/org.apache.james/maven-plugins/maven-mailetdocs-plugin-1.0-SNAPSHOT.jar stage/org.apache.james/poms/maven-mailetdocs-plugin-1.0-SNAPSHOT.pom

Author: bago
Date: Fri Aug 22 12:42:17 2008
New Revision: 688183

URL: http://svn.apache.org/viewvc?rev=688183&view=rev
Log:
Add an example mailet-report created using the maven-mailetdocs-plugin (MAILET-14)
This is indeed experimental stuff to collect opinions/ideas.
See the MAILET-14 for the simple sources of the plugin.

Added:
    james/mailet/standard/trunk/stage/org.apache.james/maven-plugins/
    james/mailet/standard/trunk/stage/org.apache.james/maven-plugins/maven-mailetdocs-plugin-1.0-SNAPSHOT.jar   (with props)
    james/mailet/standard/trunk/stage/org.apache.james/poms/maven-mailetdocs-plugin-1.0-SNAPSHOT.pom
Modified:
    james/mailet/standard/trunk/pom.xml

Modified: james/mailet/standard/trunk/pom.xml
URL: http://svn.apache.org/viewvc/james/mailet/standard/trunk/pom.xml?rev=688183&r1=688182&r2=688183&view=diff
==============================================================================
--- james/mailet/standard/trunk/pom.xml (original)
+++ james/mailet/standard/trunk/pom.xml Fri Aug 22 12:42:17 2008
@@ -117,6 +117,23 @@
     </repository>
 	</repositories>
 
+	<pluginRepositories>
+    <pluginRepository>
+      <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>
+    </pluginRepository>
+	</pluginRepositories>
+	
   <mailingLists>
     <mailingList>
 	    <name>Apache JAMES Server List</name>
@@ -177,7 +194,12 @@
   </build>
   
    <reporting>
-    <plugins>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.james</groupId>
+        <artifactId>maven-mailetdocs-plugin</artifactId>
+        <version>1.0-SNAPSHOT</version>
+      </plugin>
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
         <version>2.4.3</version>

Added: james/mailet/standard/trunk/stage/org.apache.james/maven-plugins/maven-mailetdocs-plugin-1.0-SNAPSHOT.jar
URL: http://svn.apache.org/viewvc/james/mailet/standard/trunk/stage/org.apache.james/maven-plugins/maven-mailetdocs-plugin-1.0-SNAPSHOT.jar?rev=688183&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/mailet/standard/trunk/stage/org.apache.james/maven-plugins/maven-mailetdocs-plugin-1.0-SNAPSHOT.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/mailet/standard/trunk/stage/org.apache.james/poms/maven-mailetdocs-plugin-1.0-SNAPSHOT.pom
URL: http://svn.apache.org/viewvc/james/mailet/standard/trunk/stage/org.apache.james/poms/maven-mailetdocs-plugin-1.0-SNAPSHOT.pom?rev=688183&view=auto
==============================================================================
--- james/mailet/standard/trunk/stage/org.apache.james/poms/maven-mailetdocs-plugin-1.0-SNAPSHOT.pom (added)
+++ james/mailet/standard/trunk/stage/org.apache.james/poms/maven-mailetdocs-plugin-1.0-SNAPSHOT.pom Fri Aug 22 12:42:17 2008
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <!--
+    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>maven-mailetdocs-plugin</artifactId>
+  <packaging>maven-plugin</packaging>
+  <version>1.0-SNAPSHOT</version>
+  <name>maven-mailetdocs-plugin Maven Mojo</name>
+  <url>http://maven.apache.org</url>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-plugin-api</artifactId>
+      <version>2.0</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.reporting</groupId>
+      <artifactId>maven-reporting-impl</artifactId>
+      <version>2.0.4.1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-utils</artifactId>
+      <version>1.5.6</version>
+    </dependency>
+    <dependency>
+      <groupId>javadoc</groupId>
+      <artifactId>javadoc</artifactId>
+      <version>1.3</version>
+      <type>pom</type>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.thoughtworks.qdox</groupId>
+      <artifactId>qdox</artifactId>
+      <version>1.6.3</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>mailet</artifactId>
+      <version>2.4-SNAPSHOT</version>
+    </dependency>
+  </dependencies>
+</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