Author: bago
Date: Sun Aug 27 09:35:06 2006
New Revision: 437397

URL: http://svn.apache.org/viewvc?rev=437397&view=rev
Log:
initial maven2 structure

Added:
    james/mime4j/branches/maven2-port/pom.xml   (with props)
    james/mime4j/branches/maven2-port/src/main/
    james/mime4j/branches/maven2-port/src/main/javacc/
    james/mime4j/branches/maven2-port/src/main/javacc/org/
    james/mime4j/branches/maven2-port/src/main/javacc/org/mime4j/
    james/mime4j/branches/maven2-port/src/main/javacc/org/mime4j/field/
    
james/mime4j/branches/maven2-port/src/main/javacc/org/mime4j/field/contenttype/
    james/mime4j/branches/maven2-port/src/main/javacc/org/mime4j/field/datetime/
    james/mime4j/branches/maven2-port/src/main/jjtree/
    james/mime4j/branches/maven2-port/src/main/jjtree/org/
    james/mime4j/branches/maven2-port/src/main/jjtree/org/mime4j/
    james/mime4j/branches/maven2-port/src/main/jjtree/org/mime4j/field/
    james/mime4j/branches/maven2-port/src/main/jjtree/org/mime4j/field/address/
    james/mime4j/branches/maven2-port/src/site/
    james/mime4j/branches/maven2-port/src/site/resources/
    james/mime4j/branches/maven2-port/src/site/resources/images/
    
james/mime4j/branches/maven2-port/src/site/resources/images/asf-logo-reduced.gif
   (with props)
    
james/mime4j/branches/maven2-port/src/site/resources/images/james-mime4j-logo.gif
   (with props)
    james/mime4j/branches/maven2-port/src/site/site.xml
    james/mime4j/branches/maven2-port/src/test/
    james/mime4j/branches/maven2-port/src/test/resources/

Added: james/mime4j/branches/maven2-port/pom.xml
URL: 
http://svn.apache.org/viewvc/james/mime4j/branches/maven2-port/pom.xml?rev=437397&view=auto
==============================================================================
--- james/mime4j/branches/maven2-port/pom.xml (added)
+++ james/mime4j/branches/maven2-port/pom.xml Sun Aug 27 09:35:06 2006
@@ -0,0 +1,176 @@
+<?xml version="1.0" encoding="ISO-8859-15"?><project>
+  <parent>
+    <artifactId>james-project</artifactId>
+    <groupId>org.apache.james</groupId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.james</groupId>
+  <artifactId>james-mime4j</artifactId>
+  <name>Apache James mime4j</name>
+  <version>0.4-SNAPSHOT</version>
+  <description>Java stream based MIME message parser</description>
+  <url>http://james.apache.org/mime4j/index.html</url>
+  <issueManagement>
+    <url>http://sourceforge.net/tracker/?group_id=108895&amp;atid=654176</url>
+  </issueManagement>
+  <inceptionYear>2004</inceptionYear>
+  <developers>
+    <developer>
+      <id>ntherning</id>
+      <name>Niklas Therning</name>
+      <email>niklas(at)trillian(dot)se</email>
+      <organization>Trillian AB</organization>
+    </developer>
+    <developer>
+      <id>jcheng</id>
+      <name>Joe Cheng</name>
+      <email>code(at)joecheng(dot)com</email>
+      <organization></organization>
+    </developer>
+  </developers>
+  <scm>
+    
<connection>scm:svn:http://svn.apache.org/repos/asf/james/mime4k/trunk</connection>
+    
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/james/mime4k/trunk</developerConnection>
+    
<url>http://svn.apache.org/viewcvs.cgi/james/mime4k/trunk/?root=Apache-SVN</url>
+  </scm>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>javacc-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>generate-jjtree</id>
+            <phase>generate-sources</phase>
+            <goals>
+              <goal>jjtree</goal>
+            </goals>
+            <configuration>
+              <!-- 
<nodePackage>org.apache.jsieve.parser.generated</nodePackage> -->
+              
<outputDirectory>${project.build.directory}/generated-sources/jjtree/org/mime4j/field/address/parser</outputDirectory>
+            </configuration>
+          </execution>
+          <execution>
+            <id>generate-javacc</id>
+            <phase>generate-sources</phase>
+            <goals>
+              <goal>javacc</goal>
+            </goals>
+            <configuration>
+              
<sourceDirectory>${project.build.directory}/generated-sources/jjtree/org/mime4j/field/address/parser</sourceDirectory>
+              <packageName>org.mime4j.field.address.parser</packageName>
+            </configuration>
+          </execution>
+          <execution>
+            <id>generate-javacc2</id>
+            <phase>generate-sources</phase>
+            <goals>
+              <goal>javacc</goal>
+            </goals>
+            <configuration>
+              
<sourceDirectory>${basedir}/src/main/javacc/org/mime4j/field/datetime</sourceDirectory>
+              <packageName>org.mime4j.field.datetime.parser</packageName>
+            </configuration>
+          </execution>
+          <execution>
+            <id>generate-javacc3</id>
+            <phase>generate-sources</phase>
+            <goals>
+              <goal>javacc</goal>
+            </goals>
+            <configuration>
+              
<sourceDirectory>${basedir}/src/main/javacc/org/mime4j/field/contenttype</sourceDirectory>
+              <packageName>org.mime4j.field.contenttype.parser</packageName>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <mode>development</mode>
+              <url>${pom.url}</url>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <configuration>
+          <descriptorRefs>
+            <descriptorRef>bin</descriptorRef>
+            <descriptorRef>src</descriptorRef>
+          </descriptorRefs>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <repositories>
+    <repository>
+      <snapshots>
+        <checksumPolicy>ignore</checksumPolicy>
+      </snapshots>
+      <id>bago-dist-m1</id>
+      <name>Temporary Repository</name>
+      <url>http://people.apache.org/~bago/maven/dist-m1</url>
+      <layout>legacy</layout>
+    </repository>
+  </repositories>
+  <dependencies>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>1.0.4</version>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.8</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>1.2</version>
+    </dependency>
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>jxr-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-pmd-plugin</artifactId>
+        <configuration>
+          <targetjdk>1.4</targetjdk>
+          <rulesets>
+            <ruleset>/rulesets/basic.xml</ruleset>
+            <ruleset>/rulesets/controversial.xml</ruleset>
+          </rulesets>
+          <format>xml</format>
+          <linkXref>true</linkXref>
+          <sourceEncoding>utf-8</sourceEncoding>
+          <minimumTokens>100</minimumTokens>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-site-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>
\ No newline at end of file

Propchange: james/mime4j/branches/maven2-port/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
james/mime4j/branches/maven2-port/src/site/resources/images/asf-logo-reduced.gif
URL: 
http://svn.apache.org/viewvc/james/mime4j/branches/maven2-port/src/site/resources/images/asf-logo-reduced.gif?rev=437397&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/mime4j/branches/maven2-port/src/site/resources/images/asf-logo-reduced.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
james/mime4j/branches/maven2-port/src/site/resources/images/james-mime4j-logo.gif
URL: 
http://svn.apache.org/viewvc/james/mime4j/branches/maven2-port/src/site/resources/images/james-mime4j-logo.gif?rev=437397&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/mime4j/branches/maven2-port/src/site/resources/images/james-mime4j-logo.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/mime4j/branches/maven2-port/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/james/mime4j/branches/maven2-port/src/site/site.xml?rev=437397&view=auto
==============================================================================
--- james/mime4j/branches/maven2-port/src/site/site.xml (added)
+++ james/mime4j/branches/maven2-port/src/site/site.xml Sun Aug 27 09:35:06 2006
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  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 name="James mime4j">
+  <bannerLeft>
+    <name>JAMES Mime4J</name>
+    <src>images/james-mime4j-logo.gif</src>
+    <href>http://james.apache.org/</href>
+  </bannerLeft>
+  <bannerRight>
+    <name>The Apache Software Foundation</name>
+    <src>images/asf-logo-reduced.gif</src>
+    <href>http://www.apache.org/index.html</href>
+  </bannerRight> 
+  <body>
+    <menu name="mime4j">
+      <item name="Overview" href="/index.html"/>
+      <item name="News and Status" href="/status.html"/>
+      <item name="Example" href="/samples.html"/>
+      <item name="Start" href="/start/index.html" collapse="true">
+        <item name="Build" href="/start/build.html" collapse="true"/>
+        <item name="Download" href="/start/download.html" collapse="true"/>
+      </item>
+    </menu>
+    
+    ${reports}
+  </body>
+</project>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to