[jboss-maven2-commits] Repository SVN: r34349 - maven2/org/gatein/sso/sso-cas-plugin/1.0.0-Beta02.

jboss-maven2-commits at lists.jboss.org jboss-maven2-commits at lists.jboss.org
Fri Feb 19 08:22:32 EST 2010


Author: thomas.heute at jboss.com
Date: 2010-02-19 08:22:32 -0500 (Fri, 19 Feb 2010)
New Revision: 34349

Added:
   maven2/org/gatein/sso/sso-cas-plugin/1.0.0-Beta02/sso-cas-plugin-1.0.0-Beta02.pom
Log:
Wagon: Adding sso-cas-plugin-1.0.0-Beta02.pom to repository

Added: maven2/org/gatein/sso/sso-cas-plugin/1.0.0-Beta02/sso-cas-plugin-1.0.0-Beta02.pom
===================================================================
--- maven2/org/gatein/sso/sso-cas-plugin/1.0.0-Beta02/sso-cas-plugin-1.0.0-Beta02.pom	                        (rev 0)
+++ maven2/org/gatein/sso/sso-cas-plugin/1.0.0-Beta02/sso-cas-plugin-1.0.0-Beta02.pom	2010-02-19 13:22:32 UTC (rev 34349)
@@ -0,0 +1,71 @@
+<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.sso</groupId>
+		<artifactId>sso-cas-parent</artifactId>
+		<relativePath>../pom.xml</relativePath>
+		<version>1.0.0-Beta02</version>
+	</parent>
+
+	<modelVersion>4.0.0</modelVersion>
+	<artifactId>sso-cas-plugin</artifactId>
+	<packaging>jar</packaging>
+	<name>GateIn SSO - CAS Plugin</name>
+
+	<properties>
+	</properties>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.jasig.cas</groupId>
+			<artifactId>cas-server-core</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>commons-httpclient</groupId>
+			<artifactId>commons-httpclient</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>apache-log4j</groupId>
+			<artifactId>log4j</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<version>2.3.1</version>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+
+	<!--
+		profile for packaging and deploying this plugin into a cas server
+	-->
+	<profiles>
+		<profile>
+			<id>integration-tests</id>
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-surefire-plugin</artifactId>
+						<version>2.3.1</version>
+						<configuration>
+							<skip>true</skip>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
+	</profiles>
+</project>
+



More information about the jboss-maven2-commits mailing list