You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2006/08/19 23:44:15 UTC

svn commit: r432882 - in /geronimo/javamail/trunk: ./ javamail-provider-1.3/ javamail-provider-1.3/src/java/ javamail-provider-1.3/src/main/ javamail-provider-1.3/src/main/java/ javamail-provider-1.3/src/main/resources/ javamail-provider-1.3/src/resour...

Author: jdillon
Date: Sat Aug 19 14:44:14 2006
New Revision: 432882

URL: http://svn.apache.org/viewvc?rev=432882&view=rev
Log:
Drop straggling maven.xml
Changed layout of mail-1.3 to conform to the m2 stnd
Added site descriptors
Using genesis to pick up common configuration
Removed use of properties to handle versions
Updated formatting and added copyrights to xmls that missed it

Added:
    geronimo/javamail/trunk/javamail-provider-1.3/src/main/
    geronimo/javamail/trunk/javamail-provider-1.3/src/main/java/
      - copied from r432871, geronimo/javamail/trunk/javamail-provider-1.3/src/java/
    geronimo/javamail/trunk/javamail-provider-1.3/src/main/resources/
      - copied from r432871, geronimo/javamail/trunk/javamail-provider-1.3/src/resources/
    geronimo/javamail/trunk/javamail-provider-1.3/src/site/
    geronimo/javamail/trunk/javamail-provider-1.3/src/site/apt/
    geronimo/javamail/trunk/javamail-provider-1.3/src/site/site.xml   (with props)
    geronimo/javamail/trunk/mail-1.3/src/site/
    geronimo/javamail/trunk/mail-1.3/src/site/apt/
    geronimo/javamail/trunk/mail-1.3/src/site/site.xml   (with props)
    geronimo/javamail/trunk/src/
    geronimo/javamail/trunk/src/site/
    geronimo/javamail/trunk/src/site/apt/
    geronimo/javamail/trunk/src/site/site.xml   (with props)
Removed:
    geronimo/javamail/trunk/javamail-provider-1.3/src/java/
    geronimo/javamail/trunk/javamail-provider-1.3/src/resources/
    geronimo/javamail/trunk/mail-1.3/maven.xml
Modified:
    geronimo/javamail/trunk/javamail-provider-1.3/pom.xml
    geronimo/javamail/trunk/mail-1.3/pom.xml
    geronimo/javamail/trunk/mail-1.3/src/main/assembly/javamail.xml
    geronimo/javamail/trunk/pom.xml

Modified: geronimo/javamail/trunk/javamail-provider-1.3/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/javamail/trunk/javamail-provider-1.3/pom.xml?rev=432882&r1=432881&r2=432882&view=diff
==============================================================================
--- geronimo/javamail/trunk/javamail-provider-1.3/pom.xml (original)
+++ geronimo/javamail/trunk/javamail-provider-1.3/pom.xml Sat Aug 19 14:44:14 2006
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 <!--
-
     Copyright 2006 The Apache Software Foundation
 
     Licensed under the Apache License, Version 2.0 (the "License");
@@ -15,22 +14,38 @@
     See the License for the specific language governing permissions and
     limitations under the License.
 -->
+
 <!-- $Rev$ $Date$ -->
-<project>
-    <modelVersion>4.0.0</modelVersion>
 
+<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>
-      <artifactId>mail</artifactId>
-      <groupId>org.apache.geronimo.javamail</groupId>
-      <version>1.0-SNAPSHOT</version>
+        <artifactId>mail</artifactId>
+        <groupId>org.apache.geronimo.javamail</groupId>
+        <version>1.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>geronimo-javamail_1.3.1_provider</artifactId>
-    <version>${javamailProvider13Version}</version>
-    <name>Geronimo :: JavaMail 1.3 Providers</name>
-    <description>Geronimo JavaMail 1.3 Providers</description>
-
+    <name>Geronimo JavaMail :: 1.3 Providers</name>
+    
+    <!--
+    
+    HACK: Need to explicitly configure SCM for this module since its artifactId
+          does not match the directory it lives in.
+    
+    FIXME: Rename module directory or artifactId.
+    
+    -->
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/geronimo/javamail/trunk/javamail-provider-1.3/</connection>
+        <developerConnection>scm:svn:http://svn.apache.org/repos/asf/geronimo/javamail/trunk/javamail-provider-1.3/</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/geronimo/javamail/trunk/javamail-provider-1.3/</url>
+    </scm>
+    
     <dependencies>
+        
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
             <artifactId>geronimo-activation_1.0.2_spec</artifactId>
@@ -40,12 +55,8 @@
             <groupId>org.apache.geronimo.specs</groupId>
             <artifactId>geronimo-javamail_1.3.1_spec</artifactId>
         </dependency>
+        
     </dependencies>
 
-    <scm>
-      <connection>scm:svn:http://svn.apache.org/repos/asf/geronimo/javamail/trunk/javamail-provider-1.3/</connection>
-      <developerConnection>scm:svn:http://svn.apache.org/repos/asf/geronimo/javamail/trunk/javamail-provider-1.3/</developerConnection>
-      <url>http://svn.apache.org/viewcvs.cgi/geronimo/javamail/trunk/javamail-provider-1.3/</url>
-    </scm>
 </project>
 

Added: geronimo/javamail/trunk/javamail-provider-1.3/src/site/site.xml
URL: http://svn.apache.org/viewvc/geronimo/javamail/trunk/javamail-provider-1.3/src/site/site.xml?rev=432882&view=auto
==============================================================================
--- geronimo/javamail/trunk/javamail-provider-1.3/src/site/site.xml (added)
+++ geronimo/javamail/trunk/javamail-provider-1.3/src/site/site.xml Sat Aug 19 14:44:14 2006
@@ -0,0 +1,62 @@
+<?xml version="1.0"?>
+<!--
+    Copyright 2006 The Apache Software Foundation
+
+    Licensed 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.
+-->
+
+<!-- $Id$ -->
+
+<project name="${project.name}">
+    <skin>
+        <groupId>org.apache.geronimo.genesis.config</groupId>
+        <artifactId>geronimo-skin</artifactId>
+        <version>1.0.0-SNAPSHOT</version>
+    </skin>
+    
+    <publishDate format="dd MMM yyyy"/>
+    
+    <bannerLeft>
+        <src>images/topleft_logo_437x64.gif</src>
+    </bannerLeft>
+    
+    <!--
+    <bannerRight>
+        <name>${project.name}</name>
+    </bannerRight>
+    -->
+    
+    <body>
+        <!--
+        <links>
+            <item name="Geronimo" href="http://geronimo.apache.org/"/>
+            <item name="Apache" href="http://apache.org/"/>
+        </links>
+        -->
+        
+        <menu name="Geronimo">
+            <item name="Home" href="http://geronimo.apache.org/"/>
+        </menu>
+        
+        <menu ref="parent"/>
+        
+        <menu ref="modules"/>
+        
+        <menu ref="reports"/>
+        
+        ${reports}
+        
+    </body>
+</project>
+
+

Propchange: geronimo/javamail/trunk/javamail-provider-1.3/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/javamail/trunk/javamail-provider-1.3/src/site/site.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/javamail/trunk/javamail-provider-1.3/src/site/site.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: geronimo/javamail/trunk/mail-1.3/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/javamail/trunk/mail-1.3/pom.xml?rev=432882&r1=432881&r2=432882&view=diff
==============================================================================
--- geronimo/javamail/trunk/mail-1.3/pom.xml (original)
+++ geronimo/javamail/trunk/mail-1.3/pom.xml Sat Aug 19 14:44:14 2006
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 <!--
-
     Copyright 2006 The Apache Software Foundation
 
     Licensed under the Apache License, Version 2.0 (the "License");
@@ -15,58 +14,72 @@
     See the License for the specific language governing permissions and
     limitations under the License.
 -->
+
 <!-- $Rev$ $Date$ -->
-<project>
-  <modelVersion>4.0.0</modelVersion>
-  <parent>
-    <artifactId>mail</artifactId>
-    <groupId>org.apache.geronimo.javamail</groupId>
-    <version>1.0-SNAPSHOT</version>
-  </parent>
-
-  <artifactId>geronimo-javamail_1.3_mail</artifactId>
-  <name>Geronimo :: Javamail 1.3</name>
-  <version>${javamailMail13Version}</version>
-  <packaging>pom</packaging>
-
-  <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/geronimo/javamail/trunk/mail-1.3/</connection>
-    <developerConnection>scm:svn:http://svn.apache.org/repos/asf/geronimo/javamail/trunk/mail-1.3/</developerConnection>
-    <url>http://svn.apache.org/viewcvs.cgi/geronimo/javamail/trunk/mail-1.3/</url>
-  </scm>
-
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-assembly-plugin</artifactId>
-        <version>2.1-SNAPSHOT</version>
-        <executions>
-            <execution>
-                <phase>package</phase>
-                <goals>
-                    <goal>assembly</goal>
-                </goals>
-                <configuration>
-                    <descriptor>src/main/assembly/javamail.xml</descriptor>
-                </configuration>
-            </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
-
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.geronimo.specs</groupId>
-      <artifactId>geronimo-javamail_1.3.1_spec</artifactId>
-      <version>${javamailSpecs13Version}</version>
-      <optional>false</optional>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.geronimo.javamail</groupId>
-      <artifactId>geronimo-javamail_1.3.1_provider</artifactId>
-      <version>${javamailProvider13Version}</version>
-      <optional>false</optional>
-    </dependency>
-  </dependencies>
+
+<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>
+        <artifactId>mail</artifactId>
+        <groupId>org.apache.geronimo.javamail</groupId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>geronimo-javamail_1.3_mail</artifactId>
+    <name>Geronimo Javamail :: 1.3</name>
+    <packaging>pom</packaging>
+    
+    <!--
+    
+    HACK: Need to explicitly configure SCM for this module since its artifactId
+          does not match the directory it lives in.
+    
+    FIXME: Rename module directory or artifactId.
+    
+    -->
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/geronimo/javamail/trunk/mail-1.3/</connection>
+        <developerConnection>scm:svn:http://svn.apache.org/repos/asf/geronimo/javamail/trunk/mail-1.3/</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/geronimo/javamail/trunk/mail-1.3/</url>
+    </scm>
+    
+    <dependencies>
+        
+        <dependency>
+            <groupId>org.apache.geronimo.javamail</groupId>
+            <artifactId>geronimo-javamail_1.3.1_provider</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-javamail_1.3.1_spec</artifactId>
+        </dependency>
+        
+    </dependencies>
+    
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>attached</goal>
+                        </goals>
+                        <configuration>
+                            <descriptors>
+                                <descriptor>${pom.basedir}/src/main/assembly/javamail.xml</descriptor>
+                            </descriptors>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+    
 </project>

Modified: geronimo/javamail/trunk/mail-1.3/src/main/assembly/javamail.xml
URL: http://svn.apache.org/viewvc/geronimo/javamail/trunk/mail-1.3/src/main/assembly/javamail.xml?rev=432882&r1=432881&r2=432882&view=diff
==============================================================================
--- geronimo/javamail/trunk/mail-1.3/src/main/assembly/javamail.xml (original)
+++ geronimo/javamail/trunk/mail-1.3/src/main/assembly/javamail.xml Sat Aug 19 14:44:14 2006
@@ -1,16 +1,39 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+    Copyright 2006 The Apache Software Foundation
+
+    Licensed 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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
 <assembly>
-  <formats>
-    <format>jar</format>
-  </formats>
-  <includeBaseDirectory>false</includeBaseDirectory>
-  <dependencySets>
-    <dependencySet>
-      <outputDirectory>/</outputDirectory>
-      <unpack>true</unpack>
-      <scope>runtime</scope>
-      <excludes>
-        <exclude>org.apache.geronimo.specs:geronimo-activation_1.0.2_spec</exclude>
-      </excludes>
-    </dependencySet>
-  </dependencySets>
+    
+    <formats>
+        <format>jar</format>
+    </formats>
+    
+    <includeBaseDirectory>false</includeBaseDirectory>
+    
+    <dependencySets>
+        <dependencySet>
+            <outputDirectory>/</outputDirectory>
+            <unpack>true</unpack>
+            <scope>runtime</scope>
+            <excludes>
+                <exclude>org.apache.geronimo.specs:geronimo-activation_1.0.2_spec</exclude>
+            </excludes>
+        </dependencySet>
+    </dependencySets>
+    
 </assembly>

Added: geronimo/javamail/trunk/mail-1.3/src/site/site.xml
URL: http://svn.apache.org/viewvc/geronimo/javamail/trunk/mail-1.3/src/site/site.xml?rev=432882&view=auto
==============================================================================
--- geronimo/javamail/trunk/mail-1.3/src/site/site.xml (added)
+++ geronimo/javamail/trunk/mail-1.3/src/site/site.xml Sat Aug 19 14:44:14 2006
@@ -0,0 +1,62 @@
+<?xml version="1.0"?>
+<!--
+    Copyright 2006 The Apache Software Foundation
+
+    Licensed 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.
+-->
+
+<!-- $Id$ -->
+
+<project name="${project.name}">
+    <skin>
+        <groupId>org.apache.geronimo.genesis.config</groupId>
+        <artifactId>geronimo-skin</artifactId>
+        <version>1.0.0-SNAPSHOT</version>
+    </skin>
+    
+    <publishDate format="dd MMM yyyy"/>
+    
+    <bannerLeft>
+        <src>images/topleft_logo_437x64.gif</src>
+    </bannerLeft>
+    
+    <!--
+    <bannerRight>
+        <name>${project.name}</name>
+    </bannerRight>
+    -->
+    
+    <body>
+        <!--
+        <links>
+            <item name="Geronimo" href="http://geronimo.apache.org/"/>
+            <item name="Apache" href="http://apache.org/"/>
+        </links>
+        -->
+        
+        <menu name="Geronimo">
+            <item name="Home" href="http://geronimo.apache.org/"/>
+        </menu>
+        
+        <menu ref="parent"/>
+        
+        <menu ref="modules"/>
+        
+        <menu ref="reports"/>
+        
+        ${reports}
+        
+    </body>
+</project>
+
+

Propchange: geronimo/javamail/trunk/mail-1.3/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/javamail/trunk/mail-1.3/src/site/site.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/javamail/trunk/mail-1.3/src/site/site.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: geronimo/javamail/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/javamail/trunk/pom.xml?rev=432882&r1=432881&r2=432882&view=diff
==============================================================================
--- geronimo/javamail/trunk/pom.xml (original)
+++ geronimo/javamail/trunk/pom.xml Sat Aug 19 14:44:14 2006
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 <!--
-
     Copyright 2006 The Apache Software Foundation
 
     Licensed under the Apache License, Version 2.0 (the "License");
@@ -15,179 +14,139 @@
     See the License for the specific language governing permissions and
     limitations under the License.
 -->
+
 <!-- $Rev$ $Date$ -->
-<project>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.geronimo.javamail</groupId>
-  <artifactId>mail</artifactId>
-  <packaging>pom</packaging>
-  <name>Geronimo Javamail</name>
-  <version>1.0-SNAPSHOT</version>
-
-  <!--
-   |
-   | Continuum configuration for GBuild
-   |
-   -->
-  <issueManagement>
-    <system>jira</system>
-    <url>http://issues.apache.org/jira/browse/GERONIMO</url>
-  </issueManagement>
-  <ciManagement>
-    <system>continuum</system>
-    <url>http://ci.gbuild.org/continuum</url>
-    <notifiers>
-      <notifier>
-        <configuration>
-          <address>scm@geronimo.apache.org</address>
-        </configuration>
-      </notifier>
-    </notifiers>
-  </ciManagement>
-
-  <properties>
-    <!--
-     |
-     | Geronimo module versions
-     |
-     | Note: when modules move from SNAPSHOT to an official release, they
-     | should be removed from GBuild (assuming they were added to GBuild).
-     |
-     -->
-    <javamailProvider13Version>1.0-SNAPSHOT</javamailProvider13Version>
-    <javamailProvider14Version>1.0-SNAPSHOT</javamailProvider14Version>
-
-    <javamailSpecs13Version>1.1</javamailSpecs13Version>
-    <javamailSpecs14Version>1.0-SNAPSHOT</javamailSpecs14Version>
-
-    <javamailMail13Version>1.0-SNAPSHOT</javamailMail13Version>
-    <javamailMail14Version>1.0-SNAPSHOT</javamailMail14Version>
-
-    <geronimoSpecsActivationVersion>1.1</geronimoSpecsActivationVersion>
-  </properties>
-
-  <build>
-    <defaultGoal>install</defaultGoal>
-    <sourceDirectory>src/java</sourceDirectory>
-    <testSourceDirectory>src/test</testSourceDirectory>
-
-    <resources>
-        <resource>
-            <directory>src/resources</directory>
-        </resource>
-    </resources>
-
-    <testResources>
-        <testResource>
-            <directory>src/test-data</directory>
-        </testResource>
-        <testResource>
-            <directory>src/test-resources</directory>
-        </testResource>
-    </testResources>
-
-    <plugins>
-      <plugin>
-        <artifactId>maven-one-plugin</artifactId>
-        <executions>
-          <execution>
-            <goals>
-              <goal>install-maven-one-repository</goal>
-              <goal>deploy-maven-one-repository</goal>
-            </goals>
-            <configuration>
-              <remoteRepositoryId>apache</remoteRepositoryId>
-              <remoteRepositoryUrl>scpexe://cvs.apache.org/www/cvs.apache.org/repository</remoteRepositoryUrl>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-      <plugin>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <configuration>
-          <source>1.4</source>
-          <target>1.4</target>
-        </configuration>
-      </plugin>
-    </plugins>
-    <extensions>
-      <extension>
-        <groupId>org.apache.maven.wagon</groupId>
-        <artifactId>wagon-ssh-external</artifactId>
-        <version>1.0-alpha-6</version>
-      </extension>
-    </extensions>
-  </build>
-
-  <!--
-   |
-   | Modules that are final (1.0 or other) should not be built and deployed
-   | with the SNAPSHOT versioned modules.
-   |
-   -->
-  <modules>
-    <module>javamail-provider-1.3</module>
-    <module>mail-1.3</module>
-  </modules>
-
-  <dependencyManagement>
-    <dependencies>
-      <!--
-       |
-       | Geronimo specification versions
-       |
-       -->
-      <dependency>
-        <groupId>org.apache.geronimo.specs</groupId>
-        <artifactId>geronimo-activation_1.0.2_spec</artifactId>
-        <version>${geronimoSpecsActivationVersion}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.apache.geronimo.specs</groupId>
-        <artifactId>geronimo-javamail_1.3.1_spec</artifactId>
-        <version>${javamailSpecs13Version}</version>
-      </dependency>
-   </dependencies>
-  </dependencyManagement>
-
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-
-  <pluginRepositories>
-    <pluginRepository>
-      <id>plugin-snapshots</id>
-      <name>Maven Central Plugins Development Repository</name>
-      <url>http://snapshots.maven.codehaus.org/maven2</url>
-    </pluginRepository>
-  </pluginRepositories>
-
-  <distributionManagement>
-    <repository>
-      <id>apache-repo</id>
-      <name>Apache CVS Repository</name>
-      <url>scpexe://people.apache.org/www/www.apache.org/dist/java-repository</url>
-    </repository>
-    <snapshotRepository>
-      <id>apache-snapshots</id>
-      <name>Apache CVS Development Repository</name>
-      <url>scpexe://people.apache.org/www/people.apache.org/maven-snapshot-repository</url>
-    </snapshotRepository>
-    <site>
-      <id>geronimo-website</id>
-      <url>scpexe://minotaur.apache.org/www/geronimo.apache.org/maven/</url>
-    </site>
-  </distributionManagement>
-
-  <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/geronimo/javamail/trunk/</connection>
-    <developerConnection>scm:svn:http://svn.apache.org/repos/asf/geronimo/javamail/trunk/</developerConnection>
-    <url>http://svn.apache.org/viewcvs.cgi/geronimo/javamail/trunk/</url>
-  </scm>
+
+<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.apache.geronimo.genesis.config</groupId>
+        <artifactId>project-config</artifactId>
+        <version>1.0.0-SNAPSHOT</version>
+    </parent>
+    
+    <groupId>org.apache.geronimo.javamail</groupId>
+    <artifactId>mail</artifactId>
+    <name>Geronimo Javamail</name>
+    <packaging>pom</packaging>
+    
+    <version>1.0-SNAPSHOT</version>
+    
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/geronimo/javamail/trunk/</connection>
+        <developerConnection>scm:svn:https://${maven.username}@svn.apache.org/repos/asf/geronimo/javamail/trunk/</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/geronimo/javamail/trunk/</url>
+    </scm>
+    
+    <dependencyManagement>
+        <dependencies>
+            
+            <dependency>
+                <groupId>org.apache.geronimo.specs</groupId>
+                <artifactId>geronimo-activation_1.0.2_spec</artifactId>
+                <version>1.1</version>
+            </dependency>
+            
+            <dependency>
+                <groupId>org.apache.geronimo.specs</groupId>
+                <artifactId>geronimo-javamail_1.3.1_spec</artifactId>
+                <version>1.1</version>
+            </dependency>
+            
+        </dependencies>
+    </dependencyManagement>
+
+    <build>
+        <plugins>
+            <!--
+            <plugin>
+                <artifactId>maven-one-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>install-maven-one-repository</goal>
+                            <goal>deploy-maven-one-repository</goal>
+                        </goals>
+                        <configuration>
+                            <remoteRepositoryId>apache</remoteRepositoryId>
+                            <remoteRepositoryUrl>scp://people.apache.org/www/cvs.apache.org/repository</remoteRepositoryUrl>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            -->
+            
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.4</source>
+                    <target>1.4</target>
+                </configuration>
+            </plugin>
+            
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-idea-plugin</artifactId>
+                <configuration>
+                    <jdkName>1.4</jdkName>
+                    <linkModules>true</linkModules>
+                </configuration>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-release-plugin</artifactId>
+                <configuration>
+                    <tagBase>https://svn.apache.org/repos/asf/geronimo/javamail/tags</tagBase>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <repositories>
+        <!--
+        NOTE: The default repositories are picked up by Genesis, but need to
+              specify where Genesis lives to pick it up + any additional repositories.
+        -->
+        
+        <repository>
+            <id>apache-snapshots</id>
+            <name>Apache Snapshots Repository</name>
+            <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+            <layout>default</layout>
+            <snapshots>
+                <enabled>true</enabled>
+                <updatePolicy>daily</updatePolicy>
+                <checksumPolicy>ignore</checksumPolicy>
+            </snapshots>
+            <releases>
+                <enabled>false</enabled>
+            </releases>
+        </repository>
+    </repositories>
+    
+    <distributionManagement>
+        <site>
+            <id>geronimo-website</id>
+            <url>scp://people.apache.org/www/geronimo.apache.org/maven/javamail</url>
+        </site>
+    </distributionManagement>
+    
+    <profiles>
+        <profile>
+            <id>default</id>
+
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+
+            <modules>
+                <module>javamail-provider-1.3</module>
+                <module>mail-1.3</module>
+            </modules>
+        </profile>
+    </profiles>
 
 </project>

Added: geronimo/javamail/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/geronimo/javamail/trunk/src/site/site.xml?rev=432882&view=auto
==============================================================================
--- geronimo/javamail/trunk/src/site/site.xml (added)
+++ geronimo/javamail/trunk/src/site/site.xml Sat Aug 19 14:44:14 2006
@@ -0,0 +1,65 @@
+<?xml version="1.0"?>
+<!--
+    Copyright 2006 The Apache Software Foundation
+
+    Licensed 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.
+-->
+
+<!-- $Id$ -->
+
+<project name="${project.name}">
+    <skin>
+        <groupId>org.apache.geronimo.genesis.config</groupId>
+        <artifactId>geronimo-skin</artifactId>
+        <version>1.0.0-SNAPSHOT</version>
+    </skin>
+    
+    <publishDate format="dd MMM yyyy"/>
+    
+    <bannerLeft>
+        <src>images/topleft_logo_437x64.gif</src>
+    </bannerLeft>
+    
+    <!--
+    <bannerRight>
+        <name>${project.name}</name>
+    </bannerRight>
+    -->
+    
+    <body>
+        <!--
+        <links>
+            <item name="Geronimo" href="http://geronimo.apache.org/"/>
+            <item name="Apache" href="http://apache.org/"/>
+        </links>
+        -->
+        
+        <menu name="Geronimo">
+            <item name="Home" href="http://geronimo.apache.org/"/>
+        </menu>
+        
+        <!--
+        NOTE: Do not include parent... that is Genesis and not relevant here
+        <menu ref="parent"/>
+        -->
+        
+        <menu ref="modules"/>
+        
+        <menu ref="reports"/>
+        
+        ${reports}
+        
+    </body>
+</project>
+
+

Propchange: geronimo/javamail/trunk/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/javamail/trunk/src/site/site.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/javamail/trunk/src/site/site.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml