[jboss-cvs] Repository SVN: r18154 - in maven2/org/mobicents/examples/sip-services-proxy-with-initial-invite-DU: 1.2.2.GA and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Nov 18 17:54:03 EST 2008


Author: emmartins
Date: 2008-11-18 17:54:03 -0500 (Tue, 18 Nov 2008)
New Revision: 18154

Added:
   maven2/org/mobicents/examples/sip-services-proxy-with-initial-invite-DU/1.2.2.GA/
   maven2/org/mobicents/examples/sip-services-proxy-with-initial-invite-DU/1.2.2.GA/sip-services-proxy-with-initial-invite-DU-1.2.2.GA.pom
   maven2/org/mobicents/examples/sip-services-proxy-with-initial-invite-DU/1.2.2.GA/sip-services-proxy-with-initial-invite-DU-1.2.2.GA.pom.md5
   maven2/org/mobicents/examples/sip-services-proxy-with-initial-invite-DU/1.2.2.GA/sip-services-proxy-with-initial-invite-DU-1.2.2.GA.pom.sha1
Log:
mobicents jain slee 1.2.2.GA maven release pt3

Added: maven2/org/mobicents/examples/sip-services-proxy-with-initial-invite-DU/1.2.2.GA/sip-services-proxy-with-initial-invite-DU-1.2.2.GA.pom
===================================================================
--- maven2/org/mobicents/examples/sip-services-proxy-with-initial-invite-DU/1.2.2.GA/sip-services-proxy-with-initial-invite-DU-1.2.2.GA.pom	                        (rev 0)
+++ maven2/org/mobicents/examples/sip-services-proxy-with-initial-invite-DU/1.2.2.GA/sip-services-proxy-with-initial-invite-DU-1.2.2.GA.pom	2008-11-18 22:54:03 UTC (rev 18154)
@@ -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>
+	<packaging>pom</packaging>
+	<parent>
+		<artifactId>sip-services-parent</artifactId>
+		<groupId>org.mobicents.examples</groupId>
+		<version>1.2.2.GA</version>
+	</parent>
+	
+	<artifactId>sip-services-proxy-with-initial-invite-DU</artifactId>
+	
+	<dependencies>
+		<dependency>
+			<artifactId>sip-services-location-sbb</artifactId>
+			<groupId>${pom.groupId}</groupId>
+			<version>${pom.version}</version>
+		</dependency>
+		<dependency>
+			<artifactId>sip-services-registrar-sbb</artifactId>
+			<groupId>${pom.groupId}</groupId>
+			<version>${pom.version}</version>
+		</dependency>
+		<dependency>
+			<artifactId>sip-services-proxy-with-initial-invite-sbbdescriptor</artifactId>
+			<groupId>${pom.groupId}</groupId>
+			<version>${pom.version}</version>
+		</dependency>
+		<dependency>
+			<artifactId>sip-services-common</artifactId>
+			<groupId>${pom.groupId}</groupId>
+			<version>${pom.version}</version>
+			<scope>runtime</scope>
+		</dependency>
+		<dependency>
+			<artifactId>sip-services-proxy-sbb</artifactId>
+			<groupId>${pom.groupId}</groupId>
+			<version>${pom.version}</version>
+			<scope>runtime</scope>
+		</dependency>
+		<dependency>
+			<artifactId>sip-services-location-service-jpa</artifactId>
+			<groupId>${pom.groupId}</groupId>
+			<version>${pom.version}</version>
+			<scope>runtime</scope>
+		</dependency>
+		<dependency>
+			<artifactId>sip-services-location-service-nonha</artifactId>
+			<groupId>${pom.groupId}</groupId>
+			<version>${pom.version}</version>
+			<scope>runtime</scope>
+		</dependency>
+	</dependencies>
+	
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.mobicents.tools</groupId>
+				<artifactId>maven-du-plugin</artifactId>
+				<version>${mobicents.tools.mavenplugin.du.version}</version>
+				<extensions>true</extensions>
+				<configuration />
+				<executions>
+					<execution>
+						<phase>install</phase>
+						<goals>
+							<goal>create</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<artifactId>maven-antrun-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>deploy-DU</id>
+						<phase>install</phase>
+						<goals>
+							<goal>run</goal>
+						</goals>
+						<configuration>
+							<tasks>
+								<copy overwrite="true" file="target/${project.build.finalName}.jar" todir="${jboss.home}/server/${node}/deploy" />
+							</tasks>
+						</configuration>
+					</execution>
+					<execution>
+						<id>undeploy-DU</id>
+						<phase>clean</phase>
+						<goals>
+							<goal>run</goal>
+						</goals>
+						<configuration>
+							<tasks>
+								<delete file="${jboss.home}/server/${node}/deploy/${project.build.finalName}.jar" />
+							</tasks>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+	
+</project>
\ No newline at end of file

Added: maven2/org/mobicents/examples/sip-services-proxy-with-initial-invite-DU/1.2.2.GA/sip-services-proxy-with-initial-invite-DU-1.2.2.GA.pom.md5
===================================================================
--- maven2/org/mobicents/examples/sip-services-proxy-with-initial-invite-DU/1.2.2.GA/sip-services-proxy-with-initial-invite-DU-1.2.2.GA.pom.md5	                        (rev 0)
+++ maven2/org/mobicents/examples/sip-services-proxy-with-initial-invite-DU/1.2.2.GA/sip-services-proxy-with-initial-invite-DU-1.2.2.GA.pom.md5	2008-11-18 22:54:03 UTC (rev 18154)
@@ -0,0 +1 @@
+89553e475c5b707eea1c2f5f1fb9483e
\ No newline at end of file

Added: maven2/org/mobicents/examples/sip-services-proxy-with-initial-invite-DU/1.2.2.GA/sip-services-proxy-with-initial-invite-DU-1.2.2.GA.pom.sha1
===================================================================
--- maven2/org/mobicents/examples/sip-services-proxy-with-initial-invite-DU/1.2.2.GA/sip-services-proxy-with-initial-invite-DU-1.2.2.GA.pom.sha1	                        (rev 0)
+++ maven2/org/mobicents/examples/sip-services-proxy-with-initial-invite-DU/1.2.2.GA/sip-services-proxy-with-initial-invite-DU-1.2.2.GA.pom.sha1	2008-11-18 22:54:03 UTC (rev 18154)
@@ -0,0 +1 @@
+c13f40556da673d463e9df0d0a6d5734c85a335b
\ No newline at end of file




More information about the jboss-cvs-commits mailing list