[jboss-maven2-commits] Repository SVN: r34325 - maven2/org/gatein/sso/sso-agent/1.0.0-Beta02.

jboss-maven2-commits at lists.jboss.org jboss-maven2-commits at lists.jboss.org
Fri Feb 19 07:55:25 EST 2010


Author: thomas.heute at jboss.com
Date: 2010-02-19 07:55:24 -0500 (Fri, 19 Feb 2010)
New Revision: 34325

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

Added: maven2/org/gatein/sso/sso-agent/1.0.0-Beta02/sso-agent-1.0.0-Beta02.pom
===================================================================
--- maven2/org/gatein/sso/sso-agent/1.0.0-Beta02/sso-agent-1.0.0-Beta02.pom	                        (rev 0)
+++ maven2/org/gatein/sso/sso-agent/1.0.0-Beta02/sso-agent-1.0.0-Beta02.pom	2010-02-19 12:55:24 UTC (rev 34325)
@@ -0,0 +1,150 @@
+<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-parent</artifactId>
+		<relativePath>../pom.xml</relativePath>
+		<version>1.0.0-Beta02</version>
+	</parent>
+
+	<modelVersion>4.0.0</modelVersion>
+	<artifactId>sso-agent</artifactId>
+	<packaging>jar</packaging>
+	<name>GateIn SSO - Agent</name>
+
+	<properties>
+		<!-- ChangeMe to your specific local environment -->
+		<gatein.location>/home/soshah/projects/gatein/runtime/jboss/server/default</gatein.location>
+	</properties>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.gatein.sso</groupId>
+			<artifactId>sso-auth-callback</artifactId>
+			<version>${project.version}</version>
+		</dependency>
+		<dependency>
+			<groupId>javax.servlet</groupId>
+			<artifactId>servlet-api</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.exoplatform.portal</groupId>
+			<artifactId>exo.portal.component.web</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.exoplatform.core</groupId>
+			<artifactId>exo.core.component.organization.api</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>commons-httpclient</groupId>
+			<artifactId>commons-httpclient</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.jasig.cas</groupId>
+			<artifactId>cas-client-core</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.josso</groupId>
+			<artifactId>josso-agent</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.josso</groupId>
+			<artifactId>josso-servlet-agent</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.josso</groupId>
+			<artifactId>josso-agent-shared</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.josso</groupId>
+			<artifactId>josso-protocol-client</artifactId>
+		</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>
+			<plugin>
+				<groupId>org.apache.xbean</groupId>
+				<artifactId>maven-xbean-plugin</artifactId>
+				<version>${version.xbean}</version>
+				<executions>
+					<execution>
+						<configuration>
+							<namespace>urn:org:josso:agent:generic-servlet</namespace>
+						</configuration>
+						<goals>
+							<goal>mapping</goal>
+						</goals>
+					</execution>
+				</executions>
+			</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>
+
+		<!--
+   		TODO: move this into packaging module 
+   	 -->
+		<!--
+			<profile> <id>josso-agent</id> <build> <plugins> <plugin>
+			<groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
+			<artifactId>maven-antrun-extended-plugin</artifactId> <executions>
+			<execution> <id>josso-agent-package</id> <phase>package</phase>
+			<configuration> <tasks> <echo message="Preparing the JOSSO Agent for GateIn" /> <delete dir="${basedir}/target/josso" /> <mkdir dir="${basedir}/target/josso" /> <unjar src="${settings.localRepository}/org/exoplatform/portal/exo.portal.web.portal/${org.exoplatform.portal.version}/exo.portal.web.portal-${org.exoplatform.portal.version}.war" dest="${basedir}/target/josso/portal.war" overwrite="true" /> <copy todir="${basedir}/target/josso/portal.war" overwrite="true"> <fileset dir="${basedir}/src/main/config/josso/portal.war" /> </copy> <jar destfile="${basedir}/target/josso/02portal.war" basedir="${basedir}/target/josso/portal.war" /> </tasks>
+			</configuration> <goals> <goal>run</goal> </goals> </execution>
+			<execution> <id>josso-agent-install</id> <phase>install</phase>
+			<configuration> <tasks> <echo message="Deploying the JOSSO Agent for GateIn" /> <copy file="${basedir}/target/josso/02portal.war" todir="${gatein.location}/deploy/gatein.ear" overwrite="true" /> <copy file="${settings.localRepository}/org/gatein/sso/auth-callback/${project.version}/auth-callback-${project.version}.jar" todir="${gatein.location}/deploy/gatein.ear/lib" overwrite="true" />
+
+
+			<copy file="${settings.localRepository}/org/gatein/sso/agent/${project.version}/agent-${project.version}.jar" todir="${gatein.location}/deploy/gatein.ear/lib" overwrite="true" />
+
+
+
+			<copy file="${settings.localRepository}/org/josso/josso-agent/${version.josso}/josso-agent-${version.josso}.jar" todir="${gatein.location}/deploy/gatein.ear/lib" overwrite="true" />
+
+			<copy file="${settings.localRepository}/org/josso/josso-servlet-agent/${version.josso}/josso-servlet-agent-${version.josso}.jar" todir="${gatein.location}/deploy/gatein.ear/lib" overwrite="true" />
+
+			<copy file="${settings.localRepository}/org/josso/josso-agent-shared/${version.josso}/josso-agent-shared-${version.josso}.jar" todir="${gatein.location}/deploy/gatein.ear/lib" overwrite="true" />
+
+			<copy file="${settings.localRepository}/org/josso/josso-protocol-client/${version.josso}/josso-protocol-client-${version.josso}.jar" todir="${gatein.location}/deploy/gatein.ear/lib" overwrite="true" />
+
+			<copy file="${settings.localRepository}/org/josso/josso-common/${version.josso}/josso-common-${version.josso}.jar" todir="${gatein.location}/deploy/gatein.ear/lib" overwrite="true" />
+
+			<copy file="${settings.localRepository}/org/josso/josso-core/${version.josso}/josso-core-${version.josso}.jar" todir="${gatein.location}/deploy/gatein.ear/lib" overwrite="true" />
+			</tasks> </configuration> <goals> <goal>run</goal> </goals>
+			</execution> </executions> </plugin> </plugins> </build> </profile>
+		-->
+	</profiles>
+</project>
+



More information about the jboss-maven2-commits mailing list