/protocols/ss7/release/pom.xml
http://mobicents.googlecode.com/ · XML · 175 lines · 151 code · 16 blank · 8 comment · 0 complexity · a9c8be9ea0955931874145b97ae3fd9f MD5 · raw file
- <?xml version="1.0" encoding="UTF-8"?>
- <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>mobicents-parent</artifactId>
- <groupId>org.mobicents</groupId>
- <version>2.20-SNAPSHOT</version>
- </parent>
-
- <artifactId>sources-checkout</artifactId>
- <groupId>org.mobicents.protocols.ss7.release</groupId>
- <version>2.0.0-SNAPSHOT</version> <!-- ??? proper version? -->
-
- <properties>
-
- <checkout.basedir>${checkout.dir}</checkout.basedir>
- <checkout.username>mobicents-read-only</checkout.username>
- <checkout.password />
-
- <!-- TAGS
- <asn.connectionURL>scm:svn:https://mobicents.googlecode.com/svn/tags/protocols/asn/asn-1.0.0.CR1</asn.connectionURL>
- <stream.connectionURL>scm:svn:https://mobicents.googlecode.com/svn/tags/protocols/stream/stream-1.0.0.CR1</stream.connectionURL>
-
- <ss7.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/tags/protocols/ss7/mobicents-ss7-1.0.0.CR1</ss7.connectionURL>
- -->
- <!-- TRUNK -->
-
- <asn.connectionURL>scm:svn:https://mobicents.googlecode.com/svn/trunk/protocols/asn</asn.connectionURL>
- <stream.connectionURL>scm:svn:https://mobicents.googlecode.com/svn/trunk/protocols/stream</stream.connectionURL>
- <ss7.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/protocols/ss7</ss7.connectionURL>
-
-
-
- </properties>
-
- <profiles>
- <profile>
- <id>checkout</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-scm-plugin</artifactId>
- <version>1.5</version>
- <inherited>false</inherited>
- <executions>
- <execution>
- <id>asn-checkout</id>
- <goals>
- <goal>checkout</goal>
- </goals>
- <phase>validate</phase>
- <configuration>
- <scmVersion>HEAD</scmVersion>
- <scmVersionType>revision</scmVersionType>
- <skipCheckoutIfExists>true</skipCheckoutIfExists>
- <checkoutDirectory>
- ${checkout.basedir}/asn
- </checkoutDirectory>
- <connectionUrl>
- ${asn.connectionURL}
- </connectionUrl>
- <username>${checkout.username}</username>
- <password>${checkout.password}</password>
- </configuration>
- </execution>
-
- <execution>
- <id>stream-checkout</id>
- <goals>
- <goal>checkout</goal>
- </goals>
- <phase>validate</phase>
- <configuration>
- <scmVersion>HEAD</scmVersion>
- <scmVersionType>revision</scmVersionType>
- <skipCheckoutIfExists>true</skipCheckoutIfExists>
- <checkoutDirectory>${checkout.basedir}/stream</checkoutDirectory>
- <connectionUrl>${stream.connectionURL}</connectionUrl>
- <username>${checkout.username}</username>
- <password>${checkout.password}</password>
- </configuration>
- </execution>
-
- <execution>
- <id>ss7-checkout</id>
- <goals>
- <goal>checkout</goal>
- </goals>
- <phase>validate</phase>
- <configuration>
- <scmVersion>HEAD</scmVersion>
- <scmVersionType>revision</scmVersionType>
- <skipCheckoutIfExists>true</skipCheckoutIfExists>
- <checkoutDirectory>${checkout.basedir}/ss7</checkoutDirectory>
- <connectionUrl>${ss7.connectionURL}</connectionUrl>
- <username>${checkout.username}</username>
- <password>${checkout.password}</password>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- </profiles>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-release-plugin</artifactId>
- <configuration>
- <autoVersionSubmodules>true</autoVersionSubmodules>
- <tagBase>https://mobicents.googlecode.com/svn/tags/protocols/ss7/release</tagBase>
- <!-- ?? <branchBase>https://mobicents.googlecode.com/svn/branches/protocols/ss7/1.x.y/release</branchBase> -->
- </configuration>
- </plugin>
- </plugins>
- </build>
- <scm>
- <connection>scm:svn:https://mobicents.googlecode.com/svn/tags/protocols/ss7/release/</connection>
- <developerConnection>scm:svn:https://mobicents.googlecode.com/svn/tags/protocols/ss7/release</developerConnection>
- <url>http://mobicents.googlecode.com/svn/tags/protocols/ss7/release</url>
- </scm>
-
- <repositories>
- <repository>
- <id>maven</id>
- <name>Maven Repository</name>
- <url>http://repo1.maven.org/maven2</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- <repository>
- <id>jboss</id>
- <name>JBoss Repository</name>
- <url>http://repository.jboss.org/maven2</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- <repository>
- <id>jboss-snapshots</id>
- <name>JBoss Snapshot Repository</name>
- <url>http://snapshots.jboss.org/maven2</url>
- <releases>
- <enabled>false</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
-
- <repository>
- <id>jboss-public-repository-group</id>
- <name>JBoss Public Maven Repository Group</name>
- <url>
- https://repository.jboss.org/nexus/content/groups/public/
- </url>
- <layout>default</layout>
- <releases>
- <enabled>true</enabled>
- <updatePolicy>never</updatePolicy>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- <updatePolicy>never</updatePolicy>
- </snapshots>
- </repository>
- </repositories>
-
- </project>