Skip to Content.
Sympa Menu

notify-dpml - r1600 - in trunk/central/tutorials/tooling/simple: . build filters filters/src properties symbolic

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell at BerliOS <mcconnell AT mail.berlios.de>
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: r1600 - in trunk/central/tutorials/tooling/simple: . build filters filters/src properties symbolic
  • Date: Wed, 19 Jul 2006 18:27:20 +0200

Author: mcconnell
Date: 2006-07-19 18:27:19 +0200 (Wed, 19 Jul 2006)
New Revision: 1600

Added:
trunk/central/tutorials/tooling/simple/build/
trunk/central/tutorials/tooling/simple/build/build.xml
trunk/central/tutorials/tooling/simple/build/index.xml
trunk/central/tutorials/tooling/simple/filters/
trunk/central/tutorials/tooling/simple/filters/build.xml
trunk/central/tutorials/tooling/simple/filters/index.xml
trunk/central/tutorials/tooling/simple/filters/src/
trunk/central/tutorials/tooling/simple/filters/src/DEMO.TXT
trunk/central/tutorials/tooling/simple/properties/
trunk/central/tutorials/tooling/simple/properties/build.xml
trunk/central/tutorials/tooling/simple/properties/index.xml
trunk/central/tutorials/tooling/simple/symbolic/
trunk/central/tutorials/tooling/simple/symbolic/build.xml
trunk/central/tutorials/tooling/simple/symbolic/index.xml
Log:
add simple build examples

Added: trunk/central/tutorials/tooling/simple/build/build.xml
===================================================================
--- trunk/central/tutorials/tooling/simple/build/build.xml 2006-07-19
16:25:41 UTC (rev 1599)
+++ trunk/central/tutorials/tooling/simple/build/build.xml 2006-07-19
16:27:19 UTC (rev 1600)
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<project name="demo" default="build">
+
+ <target name="build">
+ <echo message="Executing the simple project build."/>
+ </target>
+
+</project>

Added: trunk/central/tutorials/tooling/simple/build/index.xml
===================================================================
--- trunk/central/tutorials/tooling/simple/build/index.xml 2006-07-19
16:25:41 UTC (rev 1599)
+++ trunk/central/tutorials/tooling/simple/build/index.xml 2006-07-19
16:27:19 UTC (rev 1600)
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<index xmlns="link:xsd:dpml/lang/dpml-module#1.0">
+
+ <project name="demo"/>
+
+</index>

Added: trunk/central/tutorials/tooling/simple/filters/build.xml
===================================================================
--- trunk/central/tutorials/tooling/simple/filters/build.xml 2006-07-19
16:25:41 UTC (rev 1599)
+++ trunk/central/tutorials/tooling/simple/filters/build.xml 2006-07-19
16:27:19 UTC (rev 1600)
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<project name="demo" default="build">
+
+ <target name="init">
+ <property name="src" location="${basedir}/src"/>
+ <property name="target" location="${basedir}/target"/>
+ </target>
+
+ <target name="clean" depends="init">
+ <delete dir="${target}"/>
+ </target>
+
+ <target name="build" depends="init,clean">
+ <echo message="${message}"/>
+ <mkdir dir="${target}"/>
+ <copy file="${src}/DEMO.TXT" toFile="${target}/RESULT.TXT"
filtering="true"/>
+ </target>
+
+</project>

Added: trunk/central/tutorials/tooling/simple/filters/index.xml
===================================================================
--- trunk/central/tutorials/tooling/simple/filters/index.xml 2006-07-19
16:25:41 UTC (rev 1599)
+++ trunk/central/tutorials/tooling/simple/filters/index.xml 2006-07-19
16:27:19 UTC (rev 1600)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<index xmlns="link:xsd:dpml/lang/dpml-module#1.0">
+
+ <project name="demo">
+ <properties>
+ <property name="message" value="Hello"/>
+ </properties>
+ <filters>
+ <filter token="MESSAGE" value="${message} from ${user.name}."/>
+ </filters>
+ </project>
+
+</index>

Added: trunk/central/tutorials/tooling/simple/filters/src/DEMO.TXT
===================================================================
--- trunk/central/tutorials/tooling/simple/filters/src/DEMO.TXT 2006-07-19
16:25:41 UTC (rev 1599)
+++ trunk/central/tutorials/tooling/simple/filters/src/DEMO.TXT 2006-07-19
16:27:19 UTC (rev 1600)
@@ -0,0 +1,2 @@
+
+@MESSAGE@

Added: trunk/central/tutorials/tooling/simple/properties/build.xml
===================================================================
--- trunk/central/tutorials/tooling/simple/properties/build.xml 2006-07-19
16:25:41 UTC (rev 1599)
+++ trunk/central/tutorials/tooling/simple/properties/build.xml 2006-07-19
16:27:19 UTC (rev 1600)
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<project name="demo" default="build">
+
+ <target name="build">
+ <echo message="${message}"/>
+ </target>
+
+</project>

Added: trunk/central/tutorials/tooling/simple/properties/index.xml
===================================================================
--- trunk/central/tutorials/tooling/simple/properties/index.xml 2006-07-19
16:25:41 UTC (rev 1599)
+++ trunk/central/tutorials/tooling/simple/properties/index.xml 2006-07-19
16:27:19 UTC (rev 1600)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<index xmlns="link:xsd:dpml/lang/dpml-module#1.0">
+
+ <project name="demo">
+ <properties>
+ <property name="message" value="Hello"/>
+ </properties>
+ </project>
+
+</index>

Added: trunk/central/tutorials/tooling/simple/symbolic/build.xml
===================================================================
--- trunk/central/tutorials/tooling/simple/symbolic/build.xml 2006-07-19
16:25:41 UTC (rev 1599)
+++ trunk/central/tutorials/tooling/simple/symbolic/build.xml 2006-07-19
16:27:19 UTC (rev 1600)
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<project name="demo" default="build">
+
+ <target name="build">
+ <echo message="${message}"/>
+ </target>
+
+</project>

Added: trunk/central/tutorials/tooling/simple/symbolic/index.xml
===================================================================
--- trunk/central/tutorials/tooling/simple/symbolic/index.xml 2006-07-19
16:25:41 UTC (rev 1599)
+++ trunk/central/tutorials/tooling/simple/symbolic/index.xml 2006-07-19
16:27:19 UTC (rev 1600)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<index xmlns="link:xsd:dpml/lang/dpml-module#1.0">
+
+ <project name="demo">
+ <properties>
+ <property name="message" value="Hello for ${user.name}"/>
+ </properties>
+ </project>
+
+</index>




  • r1600 - in trunk/central/tutorials/tooling/simple: . build filters filters/src properties symbolic, mcconnell at BerliOS, 07/19/2006

Archive powered by MHonArc 2.6.24.

Top of Page