Revision: 18057
Author: emmartins
Date: Thu Apr 21 19:20:45 2011
Log: Update Issue 2529
Adding tftp and jdbc RAs to SLEE binary release.
http://code.google.com/p/mobicents/source/detail?r=18057
Modified:
/trunk/servers/jain-slee/release/build.xml
/trunk/servers/jain-slee/release/pom.xml
=======================================
--- /trunk/servers/jain-slee/release/build.xml Fri Apr 15 09:24:13 2011
+++ /trunk/servers/jain-slee/release/build.xml Thu Apr 21 19:20:45 2011
@@ -2,7 +2,7 @@
<project name="mobicents.release" default="release" basedir=".">
<property environment="sys"/>
- <property name="ra.dirs"
value="sip11,http-client,http-servlet,xmpp,smpp5,jcc,map,mgcp,diameter-base,diameter-sh-client,diameter-sh-server,diameter-cca,diameter-gx,diameter-cx-dx,diameter-rf,diameter-ro,xcap-client"/>
+ <property name="ra.dirs"
value="jdbc,tftp-server,sip11,http-client,http-servlet,xmpp,smpp5,jcc,map,mgcp,diameter-base,diameter-sh-client,diameter-sh-server,diameter-cca,diameter-gx,diameter-cx-dx,diameter-rf,diameter-ro,xcap-client"/>
<property name="example.dirs"
value="slee-connectivity,sip-services,sip-wake-up,google-talk-bot,sip-b2bua,sip-uas,call-controller2,mgcp-demo,converged-demo"/>
<property name="enabler.dirs"
value="xdm-client,sip-publication-client,sip-subscription-client,hss-client"/>
<property name="tool.dirs"
value="management-console,eclipslee,remote-slee-connection,twiddle"/>
@@ -20,8 +20,8 @@
<property name="mms.download.url" value
="http://downloads.sourceforge.net/project/mobicents/Mobicents%20Media%20Server/${mms.version}/mms-standalone-${mms.version}.zip"/>
<property name="mms.distro.zip.path" value="media-server.zip"/>
- <property name="ss7.version" value="1.0.0.BETA7" />
- <property name="ss7.download.url" value
="http://downloads.sourceforge.net/project/mobicents/Mobicents%20Protocols%20Suite/1.0.0.B7/mobicents-ss7-${ss7.version}.zip"/>
+ <property name="ss7.version" value="1.0.0.BETA8" />
+ <property name="ss7.download.url" value
="http://downloads.sourceforge.net/project/mobicents/Mobicents%20Protocols%20Suite/1.0.0.B8/mobicents-ss7-${ss7.version}.zip"/>
<property name="ss7.distro.zip.path" value="mobicents-ss7.zip"/>
<property name="diameter.version" value="1.4.0.BETA1" />
=======================================
--- /trunk/servers/jain-slee/release/pom.xml Fri Apr 15 09:24:13 2011
+++ /trunk/servers/jain-slee/release/pom.xml Thu Apr 21 19:20:45 2011
@@ -95,6 +95,8 @@
<ra.diameter-ro.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/servers/jain-slee/resources/diameter-ro</ra.diameter-ro.connectionURL>
<ra.httpclient.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/servers/jain-slee/resources/http-client</ra.httpclient.connectionURL>
<ra.http-servlet.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/servers/jain-slee/resources/http-servlet</ra.http-servlet.connectionURL>
+
<ra.jdbc.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/servers/jain-slee/resources/jdbc</ra.jdbc.connectionURL>
+
<ra.jcc.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/servers/jain-slee/resources/jcc</ra.jcc.connectionURL>
<ra.map.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/servers/jain-slee/resources/map</ra.map.connectionURL>
<ra.mgcp.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/servers/jain-slee/resources/mgcp</ra.mgcp.connectionURL>
@@ -103,7 +105,8 @@
<ra.mscontrol.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/servers/jain-slee/resources/mscontrol</ra.mscontrol.connectionURL>
-->
<ra.sip11.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/servers/jain-slee/resources/sip11</ra.sip11.connectionURL>
-
<ra.smpp.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/servers/jain-slee/resources/smpp5</ra.smpp.connectionURL>
+
<ra.smpp.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/servers/jain-slee/resources/smpp5</ra.smpp.connectionURL>
+
<ra.tftp-server.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/servers/jain-slee/resources/tftp-server</ra.tftp-server.connectionURL>
<ra.xcap-client.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/servers/jain-slee/resources/xcap-client</ra.xcap-client.connectionURL>
<ra.xmpp.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/servers/jain-slee/resources/xmpp</ra.xmpp.connectionURL>
@@ -595,6 +598,46 @@
<username>${checkout.username}</username>
<password>${checkout.password}</password>
</configuration>
+ </execution>
+ <execution>
+ <id>ra-jdbc-checkout</id>
+ <goals>
+ <goal>checkout</goal>
+ </goals>
+ <phase>validate</phase>
+ <configuration>
+
<scmVersion>HEAD</scmVersion>
+
<scmVersionType>revision</scmVersionType>
+
<skipCheckoutIfExists>true</skipCheckoutIfExists>
+ <checkoutDirectory>
+
${checkout.basedir}/resources/jdbc
+ </checkoutDirectory>
+ <connectionUrl>
+
${ra.jdbc.connectionURL}
+ </connectionUrl>
+
<username>${checkout.username}</username>
+
<password>${checkout.password}</password>
+ </configuration>
+ </execution>
+ <execution>
+ <id>ra-tftp-server-checkout</id>
+ <goals>
+ <goal>checkout</goal>
+ </goals>
+ <phase>validate</phase>
+ <configuration>
+
<scmVersion>HEAD</scmVersion>
+
<scmVersionType>revision</scmVersionType>
+
<skipCheckoutIfExists>true</skipCheckoutIfExists>
+ <checkoutDirectory>
+
${checkout.basedir}/resources/tftp-server
+ </checkoutDirectory>
+ <connectionUrl>
+
${ra.tftp-server.connectionURL}
+ </connectionUrl>
+
<username>${checkout.username}</username>
+
<password>${checkout.password}</password>
+ </configuration>
</execution>
<execution>