Skip to Content.
Sympa Menu

notify-dpml - svn commit: r1676 - in development/main/home: . core transit transit/handler transit/plugin util util/cli util/criteria util/exception util/i18n

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell AT netcompartner.com
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r1676 - in development/main/home: . core transit transit/handler transit/plugin util util/cli util/criteria util/exception util/i18n
  • Date: Tue, 01 Feb 2005 08:51:14 +0100

Author: mcconnell
Date: Tue Feb 1 08:51:14 2005
New Revision: 1676

Added:
development/main/home/transit/
- copied from r1675, development/main/home/core/
Removed:
development/main/home/core/
development/main/home/index.xml
Modified:
development/main/home/build.xml
development/main/home/transit/build.properties
development/main/home/transit/build.xml
development/main/home/transit/handler/build.properties
development/main/home/transit/handler/build.xml
development/main/home/transit/index.xml
development/main/home/transit/plugin/build.xml
development/main/home/util/build.xml
development/main/home/util/cli/build.xml
development/main/home/util/criteria/build.xml
development/main/home/util/exception/build.xml
development/main/home/util/i18n/build.xml
Log:
setting up the ant based build of transit and util

Modified: development/main/home/build.xml
==============================================================================
--- development/main/home/build.xml (original)
+++ development/main/home/build.xml Tue Feb 1 08:51:14 2005
@@ -19,9 +19,111 @@
-->


-<project name="dpml-transit-application" default="default" basedir="."
- xmlns:magic="antlib:net.dpml.magic">
+<project name="dpml-transit-root" default="install" basedir=".">

- <magic:import uri="artifact:template:dpml/magic/reactor"/>
+ <property file="build.properties"/>
+ <import file="${transit.home}/standard.xml"/>
+
+ <target name="bundle">
+ <property name="work" value="${basedir}/target/bundle"/>
+ <delete dir="${work}"/>
+ <mkdir dir="${work}"/>
+ <!-- create the transit configuration directory -->
+ <property name="root" value="${work}/transit"/>
+ <echo>Adding Transit application properties to ${root}</echo>
+ <mkdir dir="${root}"/>
+ <copy todir="${root}">
+ <fileset dir="${basedir}/transit/handler/target/setup"/>
+ </copy>
+ <!-- include the util package -->
+ <property name="local" value="${work}/local/${project.version}"/>
+ <echo>Creating local repository ${local}</echo>
+ <mkdir dir="${local}"/>
+ <copy todir="${local}">
+ <fileset dir="${basedir}/util/target/deliverables"/>
+ <fileset dir="${basedir}/util/cli/target/deliverables"/>
+ <fileset dir="${basedir}/util/exception/target/deliverables"/>
+ <fileset dir="${basedir}/util/criteria/target/deliverables"/>
+ <fileset dir="${basedir}/util/i18n/target/deliverables"/>
+ <fileset dir="${basedir}/util/cli/target/deliverables"/>
+ <fileset dir="${basedir}/transit/target/deliverables"/>
+ <fileset dir="${basedir}/transit/handler/target/deliverables"/>
+ <fileset dir="${basedir}/transit/antlib/target/deliverables"/>
+ <fileset dir="${basedir}/transit/plugin/target/deliverables"/>
+ </copy>
+ <!-- create the bin directory -->
+ <property name="bin" value="${work}/bin"/>
+ <echo>Adding scripts from ${bin}</echo>
+ <mkdir dir="${bin}"/>
+ <copy todir="${bin}">
+ <fileset dir="${basedir}/transit/plugin/target/bin"/>
+ </copy>
+ <!-- create the api doc directory -->
+ <!--
+ <property name="api" value="${work}/docs/api"/>
+ <echo>Adding api documentation to ${api}</echo>
+ <mkdir dir="${api}"/>
+ <copy todir="${api}">
+ <fileset dir="${dpml.docs}/api">
+ <include name="dpml/util/${util.version}/**/*.*"/>
+ <include name="dpml/transit/${project.version}/**/*.*"/>
+ </fileset>
+ </copy>
+ -->
+ <!-- create the README and LICENSE files-->
+ <copy todir="${work}" filtering="true">
+ <fileset dir="${basedir}">
+ <include name="README.TXT"/>
+ <include name="LICENSE.TXT"/>
+ <include name="NOTICE.TXT"/>
+ </fileset>
+ </copy>
+ </target>
+
+ <target name="dist" depends="bundle">
+ <!--
+ <x:dist compression="gzip">
+ <fileset dir="${work}">
+ <exclude name="bin/**"/>
+ </fileset>
+ <fileset dir="${work}">
+ <include name="bin/*.policy"/>
+ </fileset>
+ <zipfileset dir="${work}/bin" prefix="bin">
+ <include name="*.bat"/>
+ </zipfileset>
+ <tarfileset dir="${work}/bin" mode="755" prefix="bin">
+ <include name="transit"/>
+ <include name="*.sh"/>
+ </tarfileset>
+ </x:dist>
+ -->
+ </target>
+
+ <target name="install.children">
+ <ant dir="transit/handler" inheritall="false"/>
+ <ant dir="transit/antlib" inheritall="false"/>
+ <ant dir="util/exception" inheritall="false"/>
+ <ant dir="util/i18n" inheritall="false"/>
+ <ant dir="util/criteria" inheritall="false"/>
+ <ant dir="util/cli" inheritall="false"/>
+ <ant dir="transit/plugin" inheritall="false"/>
+ <ant dir="util" inheritall="false"/>
+ <ant dir="core" inheritall="false"/>
+ </target>
+
+ <target name="clean" depends="standard.clean">
+ <ant dir="transit/handler" target="clean" inheritall="false"/>
+ <ant dir="transit/antlib" target="clean" inheritall="false"/>
+ <ant dir="util/exception" target="clean" inheritall="false"/>
+ <ant dir="util/i18n" target="clean" inheritall="false"/>
+ <ant dir="util/criteria" target="clean" inheritall="false"/>
+ <ant dir="util/cli" target="clean" inheritall="false"/>
+ <ant dir="transit/plugin" target="clean" inheritall="false"/>
+ <ant dir="util" target="clean" inheritall="false"/>
+ <ant dir="core" target="clean" inheritall="false"/>
+ </target>
+
+ <target name="install" depends="standard.install,dist"/>

</project>

Modified: development/main/home/transit/build.properties
==============================================================================
--- development/main/home/core/build.properties (original)
+++ development/main/home/transit/build.properties Tue Feb 1 08:51:14
2005
@@ -1,8 +1,5 @@

-#
-# Properties used by the setup.xml file as part of the site preparation
-# for the setup of the DPML home directory, cache and related resources.
-#
-
-transit.group = dpml/transit
-
+transit.home = ..
+project.test.fork = true
+project.group = dpml/transit
+project.name = dpml-transit

Modified: development/main/home/transit/build.xml
==============================================================================
--- development/main/home/core/build.xml (original)
+++ development/main/home/transit/build.xml Tue Feb 1 08:51:14 2005
@@ -19,9 +19,18 @@
-->


-<project name="dpml-runtime" default="default" basedir="."
- xmlns:magic="antlib:net.dpml.magic">
+<project name="dpml-transit" basedir="." default="install">

- <magic:import uri="artifact:template:dpml/magic/reactor"/>
+ <property file="build.properties"/>
+ <import file="${transit.home}/standard.xml"/>
+
+ <target name="init" depends="standard.init">
+ <filter token="PROJECT-VERSION" value="${project.version}"/>
+ </target>
+
+ <target name="package" depends="standard.package">
+ <move file="${basedir}/target/deliverables/modules/project.module"
+
tofile="${basedir}/target/deliverables/modules/${project.name)-${project.version}.module"/>
+ </target>

</project>

Modified: development/main/home/transit/handler/build.properties
==============================================================================
--- development/main/home/core/handler/build.properties (original)
+++ development/main/home/transit/handler/build.properties Tue Feb 1
08:51:14 2005
@@ -1,3 +1,7 @@

+transit.home = ../..
project.test.fork = true
project.jar.main.class=net.dpml.transit.Installer
+project.group = dpml/transit
+project.name = dpml-transit-main
+junit-filename = junit-3.8.1.jar

Modified: development/main/home/transit/handler/build.xml
==============================================================================
--- development/main/home/core/handler/build.xml (original)
+++ development/main/home/transit/handler/build.xml Tue Feb 1 08:51:14
2005
@@ -18,19 +18,49 @@
limitations under the License.
-->

-<project name="dpml-transit-main" default="install" basedir="."
- xmlns:magic="antlib:net.dpml.magic"
xmlns:x="plugin:dpml/magic/dpml-magic-core" >
+<project name="dpml-transit-main" default="install" basedir=".">

- <magic:import uri="artifact:template:dpml/magic/standard"/>
+ <property file="build.properties"/>
+ <import file="${transit.home}/standard.xml"/>

<target name="init" depends="standard.init">
<filter token="PROJECT-VERSION" value="${project.version}"/>
+ <filter token="TRANSIT-CONTROLLER-PLUGIN"
+
value="artifact:plugin:dpml/transit/dpml-transit-plugin#${project.version}"/>
+ <filter token="TRANSIT-INSTALLER-PLUGIN"
+ value="artifact:plugin:osm/util/osm-util-installer#SNAPSHOT"/>
</target>

<target name="prepare" depends="standard.prepare">
+ <mkdir dir="${basedir}/target/classes/transit"/>
<copy todir="${basedir}/target/classes/transit" filtering="true">
<fileset dir="${basedir}/target/setup"/>
</copy>
</target>

+ <target name="package" depends="build">
+ <mkdir dir="${target.deliverables.jars.dir}"/>
+ <jar destfile="${target.deliverables.jars.dir}/${project.filename}"
+ basedir="${target.classes.dir}"
+ includes="**/*.*" excludes="**/*.html">
+ <manifest>
+ <attribute name="Main-Class" value="${project.jar.main.class}"/>
+ </manifest>
+ </jar>
+ </target>
+
+ <!--
+ <target name="install" depends="bootstrap.install">
+ <echo>Installing to: ${user.home}/.ant/lib</echo>
+ <copy toFile="${user.home}/.ant/lib/${project.antlib}"
+ file="${basedir}/target/deliverables/jars/${project.filename}"
overwrite="true">
+ </copy>
+ <filter token="PROJECT-VERSION" value="${project.version}"/>
+ <copy toDir="${dpml.home}/transit" overwrite="true" filtering="true">
+ <fileset dir="${target.dir}/setup"/>
+ </copy>
+ </target>
+ -->
+
+
</project>

Modified: development/main/home/transit/index.xml
==============================================================================
--- development/main/home/core/index.xml (original)
+++ development/main/home/transit/index.xml Tue Feb 1 08:51:14 2005
@@ -56,6 +56,20 @@
</info>
</project>

+ <project basedir="bootstrap">
+ <info>
+ <group>dpml/transit</group>
+ <name>dpml-transit-bootstrap</name>
+ <version>1.0.0</version>
+ <status>SNAPSHOT</status>
+ <type>jar</type>
+ </info>
+ <dependencies>
+ <include key="ant"/>
+ <include key="dpml-transit-main"/>
+ </dependencies>
+ </project>
+
<!-- disabled pending completion of a core transit bundle relase -->
<!--
<project basedir="installer">
@@ -93,4 +107,17 @@
</dependencies>
</project>

+ <!--
+ Resources.
+ -->
+
+ <resource>
+ <info>
+ <group>ant</group>
+ <name>ant</name>
+ <version>1.6.2</version>
+ <type>jar</type>
+ </info>
+ </resource>
+
</index>

Modified: development/main/home/transit/plugin/build.xml
==============================================================================
--- development/main/home/core/plugin/build.xml (original)
+++ development/main/home/transit/plugin/build.xml Tue Feb 1 08:51:14
2005
@@ -18,58 +18,87 @@
limitations under the License.
-->

-<project name="dpml-transit-plugin" default="install" basedir="."
- xmlns:magic="antlib:net.dpml.magic"
xmlns:x="plugin:dpml/magic/dpml-magic-core" >
+<project name="dpml-transit-plugin" default="install" basedir=".">

- <magic:import uri="artifact:template:dpml/magic/standard"/>
+ <property file="build.properties"/>
+ <import file="${transit.home}/standard.xml"/>

<target name="init" depends="standard.init">
- <x:filter feature="plugin" token="TRANSIT-PLUGIN-URI"/>
- <x:filter feature="path" key="dpml-transit-main" platform="windows"
token="WINDOWS-CLI-MAIN-PATH"/>
- <x:filter feature="path" key="dpml-transit-main" platform="unix"
token="UNIX-CLI-MAIN-PATH"/>
- <x:filter feature="version" key="dpml-transit-main"
token="TRANSIT_VERSION"/>
- <x:property feature="version" key="dpml-transit-main"
name="transit.main.version"/>
- <x:property feature="path" key="dpml-transit-main" platform="windows"
name="transit.w32.path"/>
- <x:property feature="path" key="dpml-transit-main" platform="unix"
name="transit.unix.path"/>
- <filter token="WINDOWS-CLI-CLASSPATH"
value="%DPML_HOME%\local\${transit.main.version}\${transit.w32.path}"/>
- <filter token="UNIX-CLI-CLASSPATH"
value="$DPML_HOME/local/${transit.main.version}/${transit.unix.path}"/>
- </target>

- <target name="package" depends="standard.package">
- <x:export class="net.dpml.transit.control.CommandHandler"/>
+ <echo>VERSION: ${project.version}</echo>
+ <property name="dpml.cache" value="${dpml.home}/cache"/>
+
+ <path id="project.main.path">
+ <pathelement
location="${dpml.cache}/dpml/transit/jars/dpml-transit-main-${project.version}.jar"/>
+ <pathelement
location="${dpml.cache}/dpml/util/jars/dpml-util-criteria-${project.version}.jar"/>
+ <pathelement
location="${dpml.cache}/dpml/util/jars/dpml-util-i18n-${project.version}.jar"/>
+ <pathelement
location="${dpml.cache}/dpml/util/jars/dpml-util-exception-${project.version}.jar"/>
+ <pathelement
location="${dpml.cache}/dpml/util/jars/dpml-util-cli-${project.version}.jar"/>
+ <pathelement
location="${dpml.cache}/commons-cli/jars/commons-cli-1.0.jar"/>
+ <pathelement location="${target.classes.dir}"/>
+ </path>
+
+ <pathconvert pathsep=", " property="thepath" refid="project.main.path"/>
+ <echo>THE PATH: ${thepath}</echo>
+ <filter token="TRANSIT-PLUGIN-URI"
+
value="artifact:plugin:dpml/transit/dpml-transit-plugin#${project.version}" />
+ <filter token="WINDOWS-CLI-MAIN-PATH"
+
value="%DPML_HOME%\local\${project.version}\dpml\transit\jars\dpml-transit-main-${project.version}.jar"
/>
+ <filter token="UNIX-CLI-MAIN-PATH"
+
value="$DPML_HOME\local/${project.version}/dpml/transit/jars/dpml-transit-main-${project.version}.jar"
/>
+ <filter token="TRANSIT_VERSION" value="${project.version}"/>
+ <filter token="WINDOWS-CLI-CLASSPATH"
+
value="%DPML_HOME%\local\${project.version}\dpml\transit\jars\dpml-transit-main-${project.version}.jar"
/>
+ <filter token="UNIX-CLI-CLASSPATH"
+
value="$DPML_HOME\local/${project.version}/dpml/transit/jars/dpml-transit-main-${project.version}.jar"
/>
</target>

- <!--
- <target name="bin" depends="install">
- <echo>
-# Updating DPML HOME bin directory.
-# Directory: ${dpml.home}/bin
- </echo>
- <mkdir dir="${dpml.home}/bin"/>
- <copy todir="${dpml.home}/bin">
- <fileset dir="${basedir}/target/bin"/>
+ <target name="prepare" depends="standard.prepare">
+ <copy toDir="${target.dir}/bin" filtering="on" failonerror="false"
overwrite="true">
+ <fileset dir="${etc}/bin">
+ <include name="**/*"/>
+ </fileset>
</copy>
- <chmod file="${dpml.home}/bin/transit" perm="755"/>
- <chmod dir="${dpml.home}/bin" includes="*.sh" perm="755"/>
</target>
- -->

- <!--
- <target name="dist" depends="bin">
- <jar
jarfile="${basedir}/target/deliverables/jars/dpml-transit-LATEST.jar" >
- <fileset dir="${dpml.home}" >
- <include name="bin/**" />
- <include name="bin/transit*" />
- <include name="bin/internal*" />
- <include name="bin/security.policy" />
- <include name="transit/**" />
- <include name="docs/dpml/transit/**" />
- </fileset>
- <fileset dir="${user.home}" >
- <include name=".ant/lib/dpml-transit-main.jar" />
- </fileset>
- </jar>
+ <target name="build" depends="standard.build">
+ <property name="plugins"
location="${basedir}/target/deliverables/plugins"/>
+ <mkdir dir="${plugins}"/>
+<echo file="${plugins}/dpml-transit-plugin-${project.version}.plugin">
+#
+# Specification classifier.
+#
+dpml.plugin.meta.namespace = net.dpml
+dpml.plugin.meta.version = 1.0
+
+#
+# Artifact descriptor.
+#
+dpml.artifact.group = dpml/transit
+dpml.artifact.name = dpml-transit-plugin
+dpml.artifact.version = ${project.version}
+dpml.artifact.signature = ${project.build.signature}
+
+#
+# Type.
+#
+dpml.plugin.class = net.dpml.transit.control.CommandHandler
+
+#
+# Implementation dependencies.
+#
+dpml.artifact.dependency.0 =
artifact:jar:dpml/transit/dpml-transit-main#${project.version}
+dpml.artifact.dependency.1 =
artifact:jar:dpml/util/dpml-util-criteria#${project.version}
+dpml.artifact.dependency.2 =
artifact:jar:dpml/util/dpml-util-i18n#${project.version}
+dpml.artifact.dependency.3 =
artifact:jar:dpml/util/dpml-util-exception#${project.version}
+dpml.artifact.dependency.4 =
artifact:jar:dpml/util/dpml-util-cli#${project.version}
+dpml.artifact.dependency.5 = artifact:jar:commons-cli/commons-cli#1.0
+dpml.artifact.dependency.6 =
artifact:jar:dpml/transit/dpml-transit-plugin#${project.version}
+
+#
+# EOF.
+#
+</echo>
</target>
- -->

</project>

Modified: development/main/home/util/build.xml
==============================================================================
--- development/main/home/util/build.xml (original)
+++ development/main/home/util/build.xml Tue Feb 1 08:51:14 2005
@@ -1,8 +1,36 @@
<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+ Copyright 2004 Stephen J McConnell
+ Copyright 2004 Niclas Hedhman
+
+ 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="dpml-util" default="default" basedir="."
- xmlns:magic="antlib:net.dpml.magic" >

- <magic:import uri="artifact:template:dpml/magic/reactor"/>
+<project name="dpml-util" default="install" basedir=".">
+
+ <property file="build.properties"/>
+ <import file="${transit.home}/standard.xml"/>
+
+ <target name="init" depends="standard.init">
+ <filter token="PROJECT-VERSION" value="${project.version}"/>
+ </target>
+
+ <target name="package" depends="standard.package">
+ <move file="${basedir}/target/deliverables/modules/project.module"
+
tofile="${basedir}/target/deliverables/modules/dpml-util-${project.version}.module"/>
+ </target>

</project>

Modified: development/main/home/util/cli/build.xml
==============================================================================
--- development/main/home/util/cli/build.xml (original)
+++ development/main/home/util/cli/build.xml Tue Feb 1 08:51:14 2005
@@ -1,8 +1,51 @@
<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+ Copyright 2004 Stephen J McConnell
+ Copyright 2004 Niclas Hedhman
+
+ 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="dpml-util-cli" default="install" basedir="."
- xmlns:magic="antlib:net.dpml.magic">
+<project name="dpml-util-cli" default="install" basedir=".">

- <magic:import uri="artifact:template:dpml/magic/standard"/>
+ <property file="build.properties"/>
+ <import file="${transit.home}/standard.xml"/>
+
+ <target name="init" depends="standard.init,commons-cli-install">
+ <path id="project.main.path">
+ <pathelement location="${cli.cache}"/>
+ <pathelement location="${target.classes.dir}"/>
+ </path>
+ </target>
+
+ <target name="commons-cli-check" depends="standard.init">
+ <property name="cli.root" value="commons-cli/jars"/>
+ <property name="cli.path" value="${cli.root}/${commons-cli.filename}"/>
+ <property name="cli.cache"
value="${dpml.home}/cache/${cli.root}/${commons-cli.filename}"/>
+ <available property="commons.cli.available" file="${cli.cache}"/>
+ </target>
+
+ <target name="commons-cli-install" depends="commons-cli-check"
unless="commons.cli.available">
+ <property name="cli.url" value="${dpml.repository}/${cli.path}"/>
+ <echo>
+#----------------------------------------------------------------------------------
+# Installing Commons CLI
+#----------------------------------------------------------------------------------
+ </echo>
+ <mkdir dir="${dpml.home}/cache/${cli.root}"/>
+ <get src="${cli.url}" usetimestamp="true" dest="${cli.cache}"/>
+ </target>

</project>

Modified: development/main/home/util/criteria/build.xml
==============================================================================
--- development/main/home/util/criteria/build.xml (original)
+++ development/main/home/util/criteria/build.xml Tue Feb 1 08:51:14
2005
@@ -1,8 +1,26 @@
<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+ Copyright 2004 Stephen J McConnell
+ Copyright 2004 Niclas Hedhman
+
+ 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="dpml-util-criteria" default="install" basedir="."
- xmlns:magic="antlib:net.dpml.magic">
+<project name="dpml-util-criteria" default="install" basedir=".">

- <magic:import uri="artifact:template:dpml/magic/standard"/>
+ <property file="build.properties"/>
+ <import file="${transit.home}/standard.xml"/>

</project>

Modified: development/main/home/util/exception/build.xml
==============================================================================
--- development/main/home/util/exception/build.xml (original)
+++ development/main/home/util/exception/build.xml Tue Feb 1 08:51:14
2005
@@ -1,8 +1,26 @@
<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+ Copyright 2004 Stephen J McConnell
+ Copyright 2004 Niclas Hedhman
+
+ 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="dpml-util-exception" default="install" basedir="."
- xmlns:magic="antlib:net.dpml.magic">
+<project name="dpml-util-exception" default="install" basedir=".">

- <magic:import uri="artifact:template:dpml/magic/standard"/>
+ <property file="build.properties"/>
+ <import file="${transit.home}/standard.xml"/>

</project>

Modified: development/main/home/util/i18n/build.xml
==============================================================================
--- development/main/home/util/i18n/build.xml (original)
+++ development/main/home/util/i18n/build.xml Tue Feb 1 08:51:14 2005
@@ -1,8 +1,26 @@
<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+ Copyright 2004 Stephen J McConnell
+ Copyright 2004 Niclas Hedhman
+
+ 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="dpml-util-i18n" default="install" basedir="."
- xmlns:magic="antlib:net.dpml.magic">
+<project name="dpml-util-i18n" default="install" basedir=".">

- <magic:import uri="artifact:template:dpml/magic/standard"/>
+ <property file="build.properties"/>
+ <import file="${transit.home}/standard.xml"/>

</project>



  • svn commit: r1676 - in development/main/home: . core transit transit/handler transit/plugin util util/cli util/criteria util/exception util/i18n, mcconnell, 02/01/2005

Archive powered by MHonArc 2.6.24.

Top of Page