You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2014/01/03 01:04:14 UTC

svn commit: r1554974 - in /ofbiz/trunk: build.xml ivy.xml

Author: jleroux
Date: Fri Jan  3 00:04:13 2014
New Revision: 1554974

URL: http://svn.apache.org/r1554974
Log:
A slightly modified patch from Pierre Smits for "Have Ivy download the activemq jar(s) for DCC" https://issues.apache.org/jira/browse/OFBIZ-5448

jleroux: I simply added a target description 

Modified:
    ofbiz/trunk/build.xml
    ofbiz/trunk/ivy.xml

Modified: ofbiz/trunk/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.xml?rev=1554974&r1=1554973&r2=1554974&view=diff
==============================================================================
--- ofbiz/trunk/build.xml (original)
+++ ofbiz/trunk/build.xml Fri Jan  3 00:04:13 2014
@@ -1149,6 +1149,10 @@ under the License.
     <!--    Ivy targets, more info at  http://ant.apache.org/ivy/  -->
     <!-- ================================================================== -->
 
+    <target name="download-activemq" depends="ivy-init" description="Download activemq for DCC">
+        <ivy:retrieve pattern="framework/base/lib/[artifact]-[revision].[ext]" conf="activemq"/>
+    </target>
+
     <target name="download-cobertura" depends="ivy-init">
         <ivy:retrieve pattern="framework/base/lib/[artifact]-[revision].[ext]" conf="cobertura"/>
     </target>

Modified: ofbiz/trunk/ivy.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/ivy.xml?rev=1554974&r1=1554973&r2=1554974&view=diff
==============================================================================
--- ofbiz/trunk/ivy.xml (original)
+++ ofbiz/trunk/ivy.xml Fri Jan  3 00:04:13 2014
@@ -25,6 +25,7 @@
         <description homepage="http://ofbiz.apache.org/"/>
     </info>
     <configurations>
+        <conf name="activemq" description="downloads the ActiveMQ jars"/>
         <conf name="cobertura" description="downloads cobertura 1.9.4.1 (GPL2.0) http://cobertura.sourceforge.net/"/>
         <conf name="mysql" description="downloads the mysql JDBC driver"/>
         <conf name="postgres" description="downloads the postgres JDBC driver"/>
@@ -32,6 +33,7 @@
             http://docs.codehaus.org/display/SONAR/Analyzing+with+SonarQube+Ant+Task"/>
     </configurations>
     <dependencies>
+        <dependency org="org.apache.activemq" name="activemq-all" rev="5.4.2" conf="activemq->default"/>
         <dependency org="net.sourceforge.cobertura" name="cobertura" rev="1.9.4.1" conf="cobertura->default"/>
         <dependency org="mysql" name="mysql-connector-java" rev="5.1.6" conf="mysql->default"/>
         <dependency org="postgresql" name="postgresql" rev="9.0-801.jdbc4" conf="postgres->default"/>