[Jboss-cvs] JBossAS SVN: r56799 - branches/JBoss_4_0_3_SP1_JBAS-3650/build

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Sep 13 12:03:29 EDT 2006


Author: scott.stark at jboss.org
Date: 2006-09-13 12:03:26 -0400 (Wed, 13 Sep 2006)
New Revision: 56799

Modified:
   branches/JBoss_4_0_3_SP1_JBAS-3650/build/build-thirdparty.xml
Log:
Include the local repository override settings

Modified: branches/JBoss_4_0_3_SP1_JBAS-3650/build/build-thirdparty.xml
===================================================================
--- branches/JBoss_4_0_3_SP1_JBAS-3650/build/build-thirdparty.xml	2006-09-13 15:27:14 UTC (rev 56798)
+++ branches/JBoss_4_0_3_SP1_JBAS-3650/build/build-thirdparty.xml	2006-09-13 16:03:26 UTC (rev 56799)
@@ -7,6 +7,17 @@
    <!-- Property File definitions -->
    <property file="local.properties"/>
    <property file="synchronize.properties"/>
+   <property environment="env"/>
+   <!-- Allow jbossbuild.repository to be set from (in order or priority)
+      + Command line -Djbossbuild.repository=...
+      + synchronize.properties jbossbuild.repository setting
+      + JBOSS_REPOSITORY environment variable (e.g. JBOSS_REPOSITORY=file:///d:/projects/repository.jboss.com/)
+   -->
+   <condition property="jbossbuild.repository" value="${env.JBOSS_REPOSITORY}">
+      <isset property="env.JBOSS_REPOSITORY"/>
+   </condition>
+   <!-- Fall back to default -->
+   <property name="jbossbuild.repository" value="http://repository.jboss.com"/>
 
    <!-- Property Definitions -->
    <property name="generatedLibrariesFiles" value="../thirdparty/libraries.ent"/>
@@ -15,6 +26,9 @@
    <!-- File Imports -->
    <import file="../tools/etc/jbossbuild/tasks.xml"/>
 
+   <!-- Proxy Configuration for HTTP get operations
+   <setproxy proxyhost="<your.proxy.host>" proxyport="<your.proxy.port>"/>
+   -->
 
    <!-- Main Definition of dependencies -->
    <build id="jbossas-thirdparty"
@@ -25,7 +39,7 @@
           description="JBoss Application Server"
           cvsroot="${cvs.prefix}@cvs.forge.jboss.com:/cvsroot/jboss"
           thirdpartypath="../thirdparty/"
-          location="http://repository.jboss.com"
+          location="${jbossbuild.repository}"
           targetdefs="targets"
       >
 




More information about the jboss-cvs-commits mailing list