You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by br...@apache.org on 2005/06/24 20:45:32 UTC

svn commit: r201665 - /incubator/beehive/trunk/netui/ant/build-schema.xml

Author: bryanche
Date: Fri Jun 24 11:45:32 2005
New Revision: 201665

URL: http://svn.apache.org/viewcvs?rev=201665&view=rev
Log:
Fix path in netui build-schema, update source locations to use
properties in netui.properties.


Modified:
    incubator/beehive/trunk/netui/ant/build-schema.xml

Modified: incubator/beehive/trunk/netui/ant/build-schema.xml
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/ant/build-schema.xml?rev=201665&r1=201664&r2=201665&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/ant/build-schema.xml (original)
+++ incubator/beehive/trunk/netui/ant/build-schema.xml Fri Jun 24 11:45:32 2005
@@ -6,10 +6,8 @@
 
     <property file="netui.properties"/>
 
-    <property name="netui.ant.dir" location="${beehive.home}/netui/ant"/>
-    <property name="netui.src.dir" location="${beehive.home}/netui/src"/>
-    <property name="schema.jar" location="${beehive.home}/netui/netui-schema.jar"/>
-    <property name="schema.build.dir" location="${beehive.home}/netui/build-schema"/>
+    <property name="schema.jar" location="${netui.home}/netui-schema.jar"/>
+    <property name="schema.build.dir" location="${netui.home}/build-schema"/>
 
     <target name="build" depends="build-schemas,make-jar"/>
 
@@ -17,37 +15,34 @@
 
         <antcall target="build-schema">
             <param name="module.name" value="compiler-core"/>
-            <param name="module.schema.dir" value="${netui.src.dir}/compiler-core/schema/struts-config"/>
+            <param name="module.schema.dir" value="${src.dir}/compiler-core/schema/struts-config"/>
         </antcall>
 
         <antcall target="build-schema">
-            <param name="module.name" value="processed-annotations"/>
-            <param name="module.schema.dir" value="${netui.src.dir}/compiler-core/schema/processed-annotations"/>
+            <param name="module.name" value="compiler-core"/>
+            <param name="module.schema.dir" value="${src.dir}/compiler-core/schema/processed-annotations"/>
         </antcall>
 
         <antcall target="build-schema">
             <param name="module.name" value="compiler-core"/>
-            <param name="module.schema.dir" value="${netui.src.dir}/compiler-core/schema/struts-validator"/>
+            <param name="module.schema.dir" value="${src.dir}/compiler-core/schema/struts-validator"/>
         </antcall>
 
+<!--
         <antcall target="build-schema">
             <param name="module.name" value="pageflow"/>
-            <param name="module.schema.dir" value="${netui.src.dir}/pageflow/schema"/>
-        </antcall>
-
-        <antcall target="build-schema">
-            <param name="module.name" value="util"/>
-            <param name="module.schema.dir" value="${netui.src.dir}/util/schema"/>
+            <param name="module.schema.dir" value="${src.dir}/compiler-core/schema/processed-annotations"/>
         </antcall>
+-->
 
         <antcall target="build-schema">
             <param name="module.name" value="util"/>
-            <param name="module.schema.dir" value="${netui.src.dir}/pageflow/schema"/>
+            <param name="module.schema.dir" value="${src.dir}/util/schema"/>
         </antcall>
 
         <antcall target="build-schema">
             <param name="module.name" value="testRecorder"/>
-            <param name="module.schema.dir" value="${netui.src.dir}/testRecorder/schema"/>
+            <param name="module.schema.dir" value="${src.dir}/testRecorder/schema"/>
         </antcall>
     </target>
 
@@ -61,7 +56,7 @@
         <ant antfile="${netui.ant.dir}/xmlBean.xml">
             <property name="xsd.root.dir" value="${module.schema.dir}"/>
             <property name="class.output.dir" value="${schema.build.dir}"/>
-            <property name="xbean.inputs" value="${netui.src.dir}/${module.name}/schema/*.xsd*"/>
+            <property name="xbean.inputs" value="${src.dir}/${module.name}/schema/*.xsd*"/>
             <property name="xbean.output" value="${schema.jar}"/>
         </ant>
     </target>