You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by ro...@apache.org on 2004/10/25 22:06:33 UTC

svn commit: rev 55530 - in incubator/lenya/branches/BRANCH_1_2_X: . src/targets

Author: roku
Date: Mon Oct 25 13:06:32 2004
New Revision: 55530

Added:
   incubator/lenya/branches/BRANCH_1_2_X/src/targets/kupu-build.xml
Modified:
   incubator/lenya/branches/BRANCH_1_2_X/build.xml
   incubator/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml
Log:
Added kupu build.

Modified: incubator/lenya/branches/BRANCH_1_2_X/build.xml
==============================================================================
--- incubator/lenya/branches/BRANCH_1_2_X/build.xml	(original)
+++ incubator/lenya/branches/BRANCH_1_2_X/build.xml	Mon Oct 25 13:06:32 2004
@@ -15,7 +15,7 @@
   limitations under the License.
 -->
 
-<!-- $Id: build.xml,v 1.63 2004/03/21 18:35:14 gregor Exp $ -->
+<!-- $Id$ -->
 
 <!DOCTYPE project [
 <!-- ===========================================================================
@@ -24,7 +24,7 @@
                        |  Apache Lenya Build System |
                        * =========================== *
 
-       CVS $Id: build.xml,v 1.63 2004/03/21 18:35:14 gregor Exp $:
+       CVS $Id$:
 
     History
     =======
@@ -61,6 +61,8 @@
   <import file="src/targets/test-build.xml" />
   <!-- Distribution targets    -->
   <import file="src/targets/dist-build.xml" />
+  <!-- Kupu targets            -->
+  <import file="src/targets/kupu-build.xml" />
   <!-- Export targets          -->
   <import file="src/targets/export-build.xml" />
   <!-- Publication tests       -->

Added: incubator/lenya/branches/BRANCH_1_2_X/src/targets/kupu-build.xml
==============================================================================
--- (empty file)
+++ incubator/lenya/branches/BRANCH_1_2_X/src/targets/kupu-build.xml	Mon Oct 25 13:06:32 2004
@@ -0,0 +1,33 @@
+<?xml version="1.0"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<project name="kupu" default="kupu">
+  
+  <description>
+    Kupu targets
+  </description>
+
+  <target name="kupu" description="Generate Kupu files">
+
+    <echo message="Generating Kupu files"/>
+
+    <exec dir="${build.webapp}/lenya/resources/kupu" executable="make" failonerror="true" failifexecutionfails="false"/>
+    <exec dir="${build.webapp}/lenya/resources/kupu" executable="make.bat" failonerror="true" failifexecutionfails="false"/>
+    
+    <echo message="NOTE: Do not bother if you got an 'execution failed' error above."/>
+    
+  </target>
+</project>

Modified: incubator/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml
==============================================================================
--- incubator/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml	(original)
+++ incubator/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml	Mon Oct 25 13:06:32 2004
@@ -59,7 +59,6 @@
         <exclude name="lenya/pubs/**"/>
         <exclude name="WEB-INF/*-xconf.xsl"/>
         <exclude name="WEB-INF/*-xml.xsl"/>
-
       </fileset>
     </copy>
 
@@ -175,6 +174,7 @@
       <fileset dir="legal"/>
     </copy>
 
+    <antcall target="kupu"/>
   </target>
 
   <!--

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-cvs-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-cvs-help@cocoon.apache.org