[jboss-maven2-commits] Repository SVN: r33421 - in maven2/org: subethamail and 6 other directories.

jboss-maven2-commits at lists.jboss.org jboss-maven2-commits at lists.jboss.org
Wed Jan 13 17:08:53 EST 2010


Author: manaRH
Date: 2010-01-13 17:08:53 -0500 (Wed, 13 Jan 2010)
New Revision: 33421

Added:
   maven2/org/subethamail/
   maven2/org/subethamail/subethasmtp-parent/
   maven2/org/subethamail/subethasmtp-parent/1.1/
   maven2/org/subethamail/subethasmtp-parent/1.1/subethasmtp-parent-1.1.pom
   maven2/org/subethamail/subethasmtp-parent/1.1/subethasmtp-parent-1.1.pom.sha1
   maven2/org/subethamail/subethasmtp-smtp/
   maven2/org/subethamail/subethasmtp-smtp/1.2/
   maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.jar
   maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.jar.sha1
   maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.pom
   maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.pom.sha1
   maven2/org/subethamail/subethasmtp-wiser/
   maven2/org/subethamail/subethasmtp-wiser/1.2/
   maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.jar
   maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.jar.sha1
   maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.pom
   maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.pom.sha1
Log:
added subethamail

Added: maven2/org/subethamail/subethasmtp-parent/1.1/subethasmtp-parent-1.1.pom
===================================================================
--- maven2/org/subethamail/subethasmtp-parent/1.1/subethasmtp-parent-1.1.pom	                        (rev 0)
+++ maven2/org/subethamail/subethasmtp-parent/1.1/subethasmtp-parent-1.1.pom	2010-01-13 22:08:53 UTC (rev 33421)
@@ -0,0 +1,103 @@
+<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>
+	<groupId>org.subethamail</groupId>
+	<artifactId>subethasmtp-parent</artifactId>
+	<version>1.1</version>
+	<packaging>pom</packaging>
+
+	<name>SubEtha SMTP Parent</name>
+
+	<licenses>
+		<license>
+			<name>LGPL</name>
+			<url>http://subethasmtp.tigris.org/source/browse/*checkout*/subethasmtp/trunk/LICENSE.txt</url>
+		</license>
+	</licenses>
+
+	<modules>
+		<module>smtp</module>
+		<module>wiser</module>
+		<module>rtest</module>
+	</modules>
+
+	<developers>
+		<developer>
+			<id>jon</id>
+			<name>Jon Scott Stevens</name>
+			<email>jon at tigris.org</email>
+		</developer>
+		<developer>
+			<id>lhoriman</id>
+			<name>Jeff Schnitzer</name>
+			<email>lhoriman at tigris.org</email>
+		</developer>
+	</developers>
+
+	<dependencyManagement>
+		<dependencies>
+			<dependency>
+				<groupId>commons-logging</groupId>
+				<artifactId>commons-logging</artifactId>
+				<version>1.1</version>
+			</dependency>
+			<dependency>
+				<groupId>javax.mail</groupId>
+				<artifactId>mail</artifactId>
+				<version>1.4</version>
+			</dependency>
+			<dependency>
+				<groupId>junit</groupId>
+				<artifactId>junit</artifactId>
+				<version>4.0</version>
+				<scope>test</scope>
+			</dependency>
+		</dependencies>
+	</dependencyManagement>
+
+	<build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.codehaus.mojo</groupId>
+                    <artifactId>retrotranslator-maven-plugin</artifactId>
+                    <version>1.0-SNAPSHOT</version>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.5</source>
+					<target>1.5</target>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+
+	<pluginRepositories>
+		<pluginRepository>
+			<id>codehaus-snapshots</id>
+			<name>Codehaus Snapshots Repository</name>
+			<url>http://snapshots.repository.codehaus.org</url>
+			<layout>default</layout>
+			<snapshots>
+				<enabled>true</enabled>
+				<updatePolicy>daily</updatePolicy>
+				<checksumPolicy>ignore</checksumPolicy>
+			</snapshots>
+			<releases>
+				<enabled>false</enabled>
+			</releases>
+		</pluginRepository>
+	</pluginRepositories>
+
+	<scm>
+		<connection>scm:svn:http://subethasmtp.tigris.org/svn/subethasmtp/trunk</connection>
+		<developerConnection>scm:svn:http://subethasmtp.tigris.org/svn/subethasmtp/trunk</developerConnection>
+		<url>http://subethasmtp.tigris.org/source/browse/subethasmtp/trunk/</url>
+	</scm>
+
+</project>

Added: maven2/org/subethamail/subethasmtp-parent/1.1/subethasmtp-parent-1.1.pom.sha1
===================================================================
--- maven2/org/subethamail/subethasmtp-parent/1.1/subethasmtp-parent-1.1.pom.sha1	                        (rev 0)
+++ maven2/org/subethamail/subethasmtp-parent/1.1/subethasmtp-parent-1.1.pom.sha1	2010-01-13 22:08:53 UTC (rev 33421)
@@ -0,0 +1 @@
+7a56fa7bf2d07fb2b626a45201074f64a153fc0d  /home/maven/repository-staging/to-ibiblio/maven2/org/subethamail/subethasmtp-parent/1.1/subethasmtp-parent-1.1.pom

Added: maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.jar
===================================================================
(Binary files differ)


Property changes on: maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.jar.sha1
===================================================================
--- maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.jar.sha1	                        (rev 0)
+++ maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.jar.sha1	2010-01-13 22:08:53 UTC (rev 33421)
@@ -0,0 +1 @@
+5ec3dc5630ec6d52b2b9ab52c1fe3bdb2e605b45  /home/maven/repository-staging/to-ibiblio/maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.jar

Added: maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.pom
===================================================================
--- maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.pom	                        (rev 0)
+++ maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.pom	2010-01-13 22:08:53 UTC (rev 33421)
@@ -0,0 +1,98 @@
+<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.subethamail</groupId>
+    <artifactId>subethasmtp-parent</artifactId>
+    <version>1.1</version>
+  </parent>
+
+  <groupId>org.subethamail</groupId>
+  <artifactId>subethasmtp-smtp</artifactId>
+  <version>1.2</version>
+
+  <name>SubEtha SMTP</name>
+  <description>A multithreaded standalone SMTP mail server implementation.</description>
+  <url>http://subethasmtp.tigris.org/</url>
+
+	<dependencies>
+		<dependency>
+			<groupId>commons-logging</groupId>
+			<artifactId>commons-logging</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>javax.mail</groupId>
+			<artifactId>mail</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<sourceDirectory>src</sourceDirectory>
+		
+		<plugins>
+			<!-- the rtest has it's own pom execution -->
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
+
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>retrotranslator-maven-plugin</artifactId>
+				<executions>
+					<execution>
+						<phase>package</phase>
+						<goals>
+							<goal>translate</goal>
+						</goals>
+						<configuration>
+							<verify>false</verify>
+							<failonwarning>true</failonwarning>
+							<lazy>true</lazy>
+							<verbose>false</verbose>
+							<destjar>${pom.basedir}/target/${pom.artifactId}-${pom.version}-java14.jar</destjar>
+							<includes>
+								<include>
+									<directory>${pom.basedir}/target</directory>
+									<pattern>${pom.artifactId}-${pom.version}.jar</pattern>
+								</include>
+							</includes>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>build-helper-maven-plugin</artifactId>
+				<version>1.0</version>
+				<executions>
+					<execution>
+						<id>attach-artifacts</id>
+						<phase>package</phase>
+						<goals>
+							<goal>attach-artifact</goal>
+						</goals>
+						<configuration>
+							<artifacts>
+								<artifact>
+									<file>${pom.basedir}/target/${pom.artifactId}-${pom.version}-java14.jar</file>
+									<type>jar</type>
+									<classifier>java14</classifier>
+								</artifact>
+							</artifacts>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+
+		</plugins>
+	</build>
+</project>

Added: maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.pom.sha1
===================================================================
--- maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.pom.sha1	                        (rev 0)
+++ maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.pom.sha1	2010-01-13 22:08:53 UTC (rev 33421)
@@ -0,0 +1 @@
+7fcc6efcfedf2ce77e78302af23b03c7bcfa815b  /home/maven/repository-staging/to-ibiblio/maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2.pom

Added: maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.jar
===================================================================
(Binary files differ)


Property changes on: maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.jar.sha1
===================================================================
--- maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.jar.sha1	                        (rev 0)
+++ maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.jar.sha1	2010-01-13 22:08:53 UTC (rev 33421)
@@ -0,0 +1 @@
+2917bbda6f30a1a23da42bb663155eb308f2ae4f  /home/maven/repository-staging/to-ibiblio/maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.jar

Added: maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.pom
===================================================================
--- maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.pom	                        (rev 0)
+++ maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.pom	2010-01-13 22:08:53 UTC (rev 33421)
@@ -0,0 +1,103 @@
+<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.subethamail</groupId>
+		<artifactId>subethasmtp-parent</artifactId>
+		<version>1.1</version>
+	</parent>
+	
+	<groupId>org.subethamail</groupId>
+	<artifactId>subethasmtp-wiser</artifactId>
+	<version>1.2</version>
+	<url>http://subethasmtp.tigris.org/wiser.html</url>
+	
+	<name>SubEtha SMTP Wiser</name>
+	<description>Wiser is a smart mail testing application.</description>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.subethamail</groupId>
+			<artifactId>subethasmtp-smtp</artifactId>
+			<version>1.2</version>
+		</dependency>
+		<dependency>
+			<groupId>commons-logging</groupId>
+			<artifactId>commons-logging</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>javax.mail</groupId>
+			<artifactId>mail</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<sourceDirectory>src</sourceDirectory>
+	
+		<plugins>
+			<!-- there are no direct tests for wiser as 
+			they live in the smtp src tree -->
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
+	
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>retrotranslator-maven-plugin</artifactId>
+				<executions>
+					<execution>
+						<phase>package</phase>
+						<goals>
+							<goal>translate</goal>
+						</goals>
+						<configuration>
+							<verify>false</verify>
+							<failonwarning>true</failonwarning>
+							<lazy>true</lazy>
+							<verbose>false</verbose>
+							<destjar>${pom.basedir}/target/${pom.artifactId}-${pom.version}-java14.jar</destjar>
+							<includes>
+								<include>
+									<directory>${pom.basedir}/target</directory>
+									<pattern>${pom.artifactId}-${pom.version}.jar</pattern>
+								</include>
+							</includes>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>build-helper-maven-plugin</artifactId>
+				<version>1.0</version>
+				<executions>
+					<execution>
+						<id>attach-artifacts</id>
+						<phase>package</phase>
+						<goals>
+							<goal>attach-artifact</goal>
+						</goals>
+						<configuration>
+							<artifacts>
+								<artifact>
+									<file>${pom.basedir}/target/${pom.artifactId}-${pom.version}-java14.jar</file>
+									<type>jar</type>
+									<classifier>java14</classifier>
+								</artifact>
+							</artifacts>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>	
+		</plugins>
+	</build>
+</project>

Added: maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.pom.sha1
===================================================================
--- maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.pom.sha1	                        (rev 0)
+++ maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.pom.sha1	2010-01-13 22:08:53 UTC (rev 33421)
@@ -0,0 +1 @@
+f23274e59ff86c48dbc450617f083d764f78dd3a  /home/maven/repository-staging/to-ibiblio/maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2.pom



More information about the jboss-maven2-commits mailing list