You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wookie.apache.org by sc...@apache.org on 2010/03/07 12:32:14 UTC

svn commit: r919971 - in /incubator/wookie/trunk/ant: ivy-java-common.xml ivy-webapp-common.xml

Author: scottbw
Date: Sun Mar  7 11:32:14 2010
New Revision: 919971

URL: http://svn.apache.org/viewvc?rev=919971&view=rev
Log:
Fixed ivy conf - changed from "default" to "dev". This fixes a problem with builds failing due to missing configs.

Modified:
    incubator/wookie/trunk/ant/ivy-java-common.xml
    incubator/wookie/trunk/ant/ivy-webapp-common.xml

Modified: incubator/wookie/trunk/ant/ivy-java-common.xml
URL: http://svn.apache.org/viewvc/incubator/wookie/trunk/ant/ivy-java-common.xml?rev=919971&r1=919970&r2=919971&view=diff
==============================================================================
--- incubator/wookie/trunk/ant/ivy-java-common.xml (original)
+++ incubator/wookie/trunk/ant/ivy-java-common.xml Sun Mar  7 11:32:14 2010
@@ -37,7 +37,7 @@
 	<target name="init">
     	<available file="${project.core.src.dir}" property="project.core.src.dir.exists"/>
     	<available file="${project.test.src.dir}" property="project.test.src.dir.exists"/>
-		<ivy:cachepath pathid="project.core.class.path" conf="default" />
+		<ivy:cachepath pathid="project.core.class.path" conf="dev" />
 		<ivy:cachepath pathid="project.test.class.path" conf="test" />
 		
 	    <path id="run.path.id">

Modified: incubator/wookie/trunk/ant/ivy-webapp-common.xml
URL: http://svn.apache.org/viewvc/incubator/wookie/trunk/ant/ivy-webapp-common.xml?rev=919971&r1=919970&r2=919971&view=diff
==============================================================================
--- incubator/wookie/trunk/ant/ivy-webapp-common.xml (original)
+++ incubator/wookie/trunk/ant/ivy-webapp-common.xml Sun Mar  7 11:32:14 2010
@@ -32,7 +32,7 @@
     </target>
 
 	<target name="deploy-webapp" depends="compile-core, clean-webapp-lib">
-		<ivy:cachepath pathid="project.core.class.path" conf="default" />
+		<ivy:cachepath pathid="project.core.class.path" conf="dev" />
 		<copy todir="${servletEngine.webapp.dir}/${ant.project.name}/WEB-INF/classes">
 			<fileset dir="${project.build.classes.dir}" />
 		</copy>