Author: manaRH
Date: 2010-02-03 03:05:10 -0500 (Wed, 03 Feb 2010)
New Revision: 12004
Modified:
branches/enterprise/JBPAPP_5_0/build.xml
Log:
fixed NPE in build script if there are more targets specified on command line after build
target
Modified: branches/enterprise/JBPAPP_5_0/build.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/build.xml 2010-02-02 10:48:29 UTC (rev 12003)
+++ branches/enterprise/JBPAPP_5_0/build.xml 2010-02-03 08:05:10 UTC (rev 12004)
@@ -185,9 +185,9 @@
<target name="initcore" depends="init">
<init classesdir="${classes.core.dir}" srcdir="${src.core.dir}"
modulename="core" pom="${core.pom}" />
- <inlineDependencies id="jbosscache2" scope="compile">
+ <!-- <inlineDependencies id="jbosscache2"
scope="compile">
<dependency groupId="org.jboss.cache"
artifactId="jbosscache-core" version="2.2.0.CR6" />
- </inlineDependencies>
+ </inlineDependencies> -->
</target>
<target name="antlr" depends="initcore"
description="Generate ANTLR parser">
@@ -212,7 +212,7 @@
</compile>
<!-- Fiddle to make sure we compile the JBossCache2 stuff with JBossCache2"
-->
<path id="compile.core-jbosscache2.path">
- <path refid="compile.jbosscache2.path" />
+ <!-- <path refid="compile.jbosscache2.path" /> -->
<path refid="compile.core.path" />
<fileset dir="${classes.core.dir}" />
</path>