[jboss-maven2-commits] Repository SVN: r31163 - maven2/org/gatein/common/common-common/2.0.0-CR1.

jboss-maven2-commits at lists.jboss.org jboss-maven2-commits at lists.jboss.org
Thu Nov 19 11:41:57 EST 2009


Author: thomas.heute at jboss.com
Date: 2009-11-19 11:41:57 -0500 (Thu, 19 Nov 2009)
New Revision: 31163

Added:
   maven2/org/gatein/common/common-common/2.0.0-CR1/common-common-2.0.0-CR1.pom
Log:
Wagon: Adding common-common-2.0.0-CR1.pom to repository

Added: maven2/org/gatein/common/common-common/2.0.0-CR1/common-common-2.0.0-CR1.pom
===================================================================
--- maven2/org/gatein/common/common-common/2.0.0-CR1/common-common-2.0.0-CR1.pom	                        (rev 0)
+++ maven2/org/gatein/common/common-common/2.0.0-CR1/common-common-2.0.0-CR1.pom	2009-11-19 16:41:57 UTC (rev 31163)
@@ -0,0 +1,96 @@
+<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>
+		<groupId>org.gatein.common</groupId>
+		<artifactId>common-parent</artifactId>
+		<version>2.0.0-CR1</version>
+	</parent>
+	<modelVersion>4.0.0</modelVersion>
+	<artifactId>common-common</artifactId>
+	<packaging>jar</packaging>
+	<name>GateIn - Common component (common)</name>
+
+	<dependencies>
+
+		<dependency>
+			<groupId>org.gatein.common</groupId>
+			<artifactId>common-logging</artifactId>
+			<version>2.0.0-CR1</version>
+		</dependency>
+		
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-log4j12</artifactId>
+			<version>1.5.6</version>
+			<scope>test</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>javax.activation</groupId>
+			<artifactId>activation</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.jboss</groupId>
+			<artifactId>jboss-vfs</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>commons-httpclient</groupId>
+			<artifactId>commons-httpclient</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>javax.servlet</groupId>
+			<artifactId>servlet-api</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<scope>test</scope>
+		</dependency>
+
+	</dependencies>
+
+	<build>
+		<plugins>
+
+			<plugin>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<encoding>iso-8859-1</encoding>
+				</configuration>
+			</plugin>
+
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<configuration>
+					<!--
+						To use in conjonctin with export MAVEN_OPTS="-Xdebug -Xnoagent
+						-Djava.compiler=NONE
+						-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000"
+					-->
+					<forkMode>never</forkMode>
+					<argLine>-enableassertions</argLine>
+					<excludes>
+						<exclude>org/gatein/common/i18n/BundleNameParserTestCase*.java</exclude>
+						<exclude>org/gatein/common/net/URLNavigatorTestCase.java</exclude>
+					</excludes>
+				</configuration>
+			</plugin>
+
+		</plugins>
+
+		<testSourceDirectory>src/test/java</testSourceDirectory>
+
+		<testResources>
+			<testResource>
+				<directory>src/test/resources</directory>
+				<filtering>false</filtering>
+			</testResource>
+		</testResources>
+	</build>
+
+	<properties />
+</project>



More information about the jboss-maven2-commits mailing list