Skip to Content.
Sympa Menu

notify-dpml - svn commit: r1704 - in development/main/home: . transit transit/handler transit/handler/etc/setup/authority transit/handler/src/main/net/dpml/transit transit/handler/src/main/net/dpml/transit/artifact transit/plugin transit/tools 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: r1704 - in development/main/home: . transit transit/handler transit/handler/etc/setup/authority transit/handler/src/main/net/dpml/transit transit/handler/src/main/net/dpml/transit/artifact transit/plugin transit/tools util util/cli util/criteria util/exception util/i18n
  • Date: Thu, 03 Feb 2005 05:17:03 +0100

Author: mcconnell
Date: Thu Feb 3 05:17:02 2005
New Revision: 1704

Modified:
development/main/home/build.properties
development/main/home/build.xml
development/main/home/common.properties
development/main/home/standard.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/handler/etc/setup/authority/hosts.xml
development/main/home/transit/handler/src/main/net/dpml/transit/Main.java

development/main/home/transit/handler/src/main/net/dpml/transit/Transit.java

development/main/home/transit/handler/src/main/net/dpml/transit/artifact/FileCacheHandler.java

development/main/home/transit/handler/src/main/net/dpml/transit/artifact/SecuredTransitContext.java
development/main/home/transit/plugin/build.properties
development/main/home/transit/plugin/build.xml
development/main/home/transit/tools/build.properties
development/main/home/transit/tools/build.xml
development/main/home/util/build.properties
development/main/home/util/build.xml
development/main/home/util/cli/build.properties
development/main/home/util/cli/build.xml
development/main/home/util/criteria/build.properties
development/main/home/util/criteria/build.xml
development/main/home/util/exception/build.properties
development/main/home/util/exception/build.xml
development/main/home/util/i18n/build.properties
development/main/home/util/i18n/build.xml
Log:
Lots of minor build updates and one important transit update : if the transit
system is deployed prior to a transit install - transit will use
http://repository.dpml.net as the default authority.

Modified: development/main/home/build.properties
==============================================================================
--- development/main/home/build.properties (original)
+++ development/main/home/build.properties Thu Feb 3 05:17:02 2005
@@ -1,4 +1,5 @@

+home = .
transit.home = .
project.name = dpml-home
project.group = dpml

Modified: development/main/home/build.xml
==============================================================================
--- development/main/home/build.xml (original)
+++ development/main/home/build.xml Thu Feb 3 05:17:02 2005
@@ -21,8 +21,9 @@

<project name="dpml-home" default="install" basedir=".">

- <property file="build.properties"/>
- <import file="${transit.home}/standard.xml"/>
+ <property file="${basedir}/build.properties"/>
+ <import file="${home}/standard.xml"/>
+
<property name="bundle" value="${basedir}/target/bundle"/>

<target name="install" depends="standard.install,bundle">
@@ -178,3 +179,4 @@
</target>

</project>
+

Modified: development/main/home/common.properties
==============================================================================
--- development/main/home/common.properties (original)
+++ development/main/home/common.properties Thu Feb 3 05:17:02 2005
@@ -4,4 +4,10 @@
commons-cli.parent = commons-cli/jars
commons-cli.path = ${commons-cli.parent}/${commons-cli.filename}
commons-cli.uri = artifact:jar:commons-cli/commons-cli#${commons-cli.version}
-ant.uri = artifact:jar:ant/ant#1.6.2
\ No newline at end of file
+
+dpml.repository = http://repository.dpml.net/classic
+
+junit.filename = junit-3.8.1.jar
+
+ant.uri = artifact:jar:ant/ant#1.6.2
+

Modified: development/main/home/standard.xml
==============================================================================
--- development/main/home/standard.xml (original)
+++ development/main/home/standard.xml Thu Feb 3 05:17:02 2005
@@ -20,22 +20,74 @@

<project name="standard">

+ <!--
+ Environment setup.
+ -->
+
<property environment="ENV"/>
+ <property file="${basedir}/build.properties"/>
+ <property file="${home}/common.properties"/>
+
+ <condition property="dpml.env.declared" value="false">
+ <isset property="ENV.DPML_HOME"/>
+ </condition>
+
+ <target name="setup" depends="dpml-home-setup,junit-setup"/>
+
+ <target name="dpml-home-setup"
depends="dpml-home-environment,dpml-home-default,dpml-home-create"/>
+
+ <target name="dpml-home-environment" if="dpml.env.declared">
+ <property name="dpml.home" value="${ENV.DPML_HOME}"/>
+ </target>
+
+ <target name="dpml-home-default" unless="dpml.env.declared">
+ <property name="dpml.home" value="${user.home}/.dpml"/>
+ </target>
+
+ <target name="dpml-home-create">
+ <property name="dpml.cache" value="${dpml.home}/cache"/>
+ <property name="dpml.docs" value="${dpml.home}/docs"/>
+ <mkdir dir="${dpml.home}"/>
+ <mkdir dir="${dpml.cache}"/>
+ <mkdir dir="${dpml.docs}"/>
+ </target>

- <property file="bootstrap.properties"/>
- <property file="build.properties"/>
- <property file="${transit.home}/build.properties"/>
+ <target name="junit-test">
+ <available property="junit.available"
file="${user.home}/.ant/lib/${junit.filename}"/>
+ </target>
+
+ <target name="junit-setup" depends="junit-test" unless="junit.available">
+
+ <property name="junit.url"
value="${dpml.repository}/junit/jars/${junit.filename}"/>
+ <echo>
+#----------------------------------------------------------------------------------
+# Installing JUnit
+#----------------------------------------------------------------------------------
+ </echo>
+ <mkdir dir="${dpml.home}/cache/junit/jars"/>
+ <get src="${junit.url}" usetimestamp="true"
+ dest="${dpml.home}/cache/junit/jars/${junit.filename}"/>
+ <mkdir dir="${user.home}/.ant/lib"/>
+ <copy toDir="${user.home}/.ant/lib">
+ <fileset dir="${dpml.home}/cache/junit/jars">
+ <include name="${junit.filename}"/>
+ </fileset>
+ </copy>
+ <echo>
+#----------------------------------------------------------------------------------
+# The build procedure has updated the contents of the .ant/lib directory.
In order
+# to include the junit file within ant's classloader please restart the
build.
+#----------------------------------------------------------------------------------
+ </echo>
+ <fail message="Ant lib updated. Please restart build procedure."/>
+ </target>
+
+ <!-- project setup -->

<property name="project.name" value="UNKNOWN"/>
<property name="project.type" value="jar"/>
<property name="project.dir" value="${basedir}/target/test"/>

- <available classname="junit.framework.TestCase"
property="junit.available"/>
-
- <condition property="dpml.env.declared" value="false">
- <isset property="ENV.DPML_HOME"/>
- </condition>
-
<condition property="signature.declared" value="false">
<isset property="dpml.release.signature"/>
</condition>
@@ -70,7 +122,7 @@
<property name="project.version" value="${dpml.release.signature}"/>
</target>

- <target name="init"
depends="check-dpml-home,declare-dpml-home,setupReleaseFilename">
+ <target name="init" depends="setup,setupReleaseFilename">
<property name="project.version" value="SNAPSHOT"/>
<property name="project.filename"
value="${project.name}-${project.version}.${project.type}"/>
<property name="dpml-transit-handler.filename"
value="dpml-transit-main-${project.version}.jar"/>
@@ -82,7 +134,7 @@
</echo>
</target>

- <target name="setup-path">
+ <target name="setup-path" depends="init">
<path id="project.main.path">
<pathelement location="${target.classes.dir}"/>
</path>
@@ -250,7 +302,7 @@
Compile the tests using the classes as the classpath and
place results into the target/test-classes directory.
-->
- <target name="build-tests" depends="prepare,build,junit-install"
if="src.test.available">
+ <target name="build-tests" depends="prepare,build" if="src.test.available">
<mkdir dir="${target.test-classes.dir}"/>
<javac srcdir="${target.build.test.dir}"
destdir="${target.test-classes.dir}"
@@ -265,11 +317,11 @@
<target name="test" depends="build-tests" if="src.test.available">
<mkdir dir="${target.test.dir}"/>
<mkdir dir="${target.test-reports.dir}"/>
- <junit printsummary="yes" haltonfailure="yes" showoutput="true"
- dir="${basedir}" fork="true"
- failureproperty="junit.failure"
- haltonerror="no"
- errorproperty="junit.error">
+ <junit fork="true" dir="${basedir}"
+ printsummary="yes"
+ showoutput="true"
+ haltonfailure="yes" failureproperty="junit.failure"
+ haltonerror="no" errorproperty="junit.error">
<classpath>
<path refid="project.test.path"/>
<pathelement location="${target.test-classes.dir}"/>
@@ -305,30 +357,7 @@
<delete dir="${target.dir}"/>
</target>

- <target name="declare-dpml-home" if="dpml.env.declared">
- <property name="dpml.home" value="${ENV.DPML_HOME}"/>
- </target>

- <target name="check-dpml-home" unless="dpml.env.declared">
- <property name="dpml.home" value="${user.home}/.dpml"/>
- </target>
+</project>

- <target name="junit-install" depends="init" unless="junit.available">
- <property name="junit.url"
value="${dpml.repository}/junit/jars/${junit.filename}"/>
- <echo>
-#----------------------------------------------------------------------------------
-# Installing JUnit
-#----------------------------------------------------------------------------------
- </echo>
- <mkdir dir="${dpml.home}/cache/junit/jars"/>
- <get src="${junit.url}" usetimestamp="true"
- dest="${dpml.home}/cache/junit/jars/${junit.filename}"/>
- <mkdir dir="${user.home}/.ant/lib"/>
- <copy toDir="${user.home}/.ant/lib">
- <fileset dir="${dpml.home}/cache/junit/jars">
- <include name="${junit.filename}"/>
- </fileset>
- </copy>
- </target>

-</project>

Modified: development/main/home/transit/build.properties
==============================================================================
--- development/main/home/transit/build.properties (original)
+++ development/main/home/transit/build.properties Thu Feb 3 05:17:02
2005
@@ -1,5 +1,5 @@

-transit.home = ..
+home = ..
project.test.fork = true
project.group = dpml/transit
project.name = dpml-transit

Modified: development/main/home/transit/build.xml
==============================================================================
--- development/main/home/transit/build.xml (original)
+++ development/main/home/transit/build.xml Thu Feb 3 05:17:02 2005
@@ -19,12 +19,10 @@
-->


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

- <property file="build.properties"/>
- <import file="${transit.home}/standard.xml"/>
- <property file="${transit.home}/common.properties"/>
+ <property file="${basedir}/build.properties"/>
+ <import file="${home}/standard.xml"/>

<target name="init" depends="standard.init">
<filter token="PROJECT-VERSION" value="${project.version}"/>
@@ -42,12 +40,25 @@
<target name="install" depends="standard.install,javadoc"/>

<target name="javadoc" depends="prepare">
- <transit:get property="ant.path" uri="${ant.uri}"/>
- <transit:get property="i18n.path"
uri="artifact:jar:dpml/util/dpml-util-i18n#${project.version}"/>
- <transit:get property="cli.path"
uri="artifact:jar:dpml/util/dpml-util-cli#${project.version}"/>
- <transit:get property="commons-cli.cache.path" uri="${commons-cli.uri}"/>
- <transit:get property="exception.path"
uri="artifact:jar:dpml/util/dpml-util-exception#${project.version}"/>
+
+ <taskdef uri="antlib:net.dpml.transit"
resource="net/dpml/transit/antlib.xml">
+ <classpath>
+ <pathelement
location="${dpml.home}/cache/dpml/transit/jars/dpml-transit-main-${project.version}.jar"/>
+ <pathelement
location="${dpml.home}/cache/dpml/transit/jars/dpml-transit-tools-${project.version}.jar"/>
+ </classpath>
+ </taskdef>
+
+ <get xmlns="antlib:net.dpml.transit" property="ant.path"
uri="${ant.uri}"/>
+ <get xmlns="antlib:net.dpml.transit" property="commons-cli.cache.path"
uri="${commons-cli.uri}"/>
+ <get xmlns="antlib:net.dpml.transit" property="i18n.path"
+ uri="artifact:jar:dpml/util/dpml-util-i18n#${project.version}"/>
+ <get xmlns="antlib:net.dpml.transit" property="cli.path"
+ uri="artifact:jar:dpml/util/dpml-util-cli#${project.version}"/>
+ <get xmlns="antlib:net.dpml.transit" property="exception.path"
+ uri="artifact:jar:dpml/util/dpml-util-exception#${project.version}"/>
+
<property name="api.dir" location="${basedir}/target/api"/>
+
<mkdir dir="${api.dir}"/>
<javadoc overview="overview.html" destdir="${api.dir}" use="true">
<doctitle><![CDATA[<h1>${project.name} API, Build
${project.version}</h1>]]></doctitle>
@@ -67,11 +78,11 @@
<link offline="true"
href="http://www.dpml.net/api/dpml/util/${project.version}";
packagelistloc="${transit.home}/util/target/api"/>
<classpath>
- <pathelement location="${ant.path}"/>
<pathelement location="${i18n.path}"/>
<pathelement location="${cli.path}"/>
- <pathelement location="${commons-cli.cache.path}"/>
<pathelement location="${exception.path}"/>
+ <pathelement location="${commons-cli.cache.path}"/>
+ <pathelement location="${ant.path}"/>
</classpath>
</javadoc>
</target>

Modified: development/main/home/transit/handler/build.properties
==============================================================================
--- development/main/home/transit/handler/build.properties (original)
+++ development/main/home/transit/handler/build.properties Thu Feb 3
05:17:02 2005
@@ -1,5 +1,5 @@

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

Modified: development/main/home/transit/handler/build.xml
==============================================================================
--- development/main/home/transit/handler/build.xml (original)
+++ development/main/home/transit/handler/build.xml Thu Feb 3 05:17:02
2005
@@ -20,8 +20,8 @@

<project name="dpml-transit-main" default="install" basedir=".">

- <property file="build.properties"/>
- <import file="${transit.home}/standard.xml"/>
+ <property file="${basedir}/build.properties"/>
+ <import file="${home}/standard.xml"/>

<target name="init" depends="standard.init">
<filter token="PROJECT-VERSION" value="${project.version}"/>
@@ -50,18 +50,4 @@
<checksum fileext=".md5"
file="${target.deliverables.jars.dir}/${project.filename}"/>
</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/handler/etc/setup/authority/hosts.xml
==============================================================================
--- development/main/home/transit/handler/etc/setup/authority/hosts.xml
(original)
+++ development/main/home/transit/handler/etc/setup/authority/hosts.xml Thu
Feb 3 05:17:02 2005
@@ -5,6 +5,7 @@
<host dir="local/@PROJECT-VERSION@">
<priority>10</priority>
<trusted>true</trusted>
+ <policy>timestamp</policy>
</host>

<host href="http://repository.dpml.net/classic";>

Modified:
development/main/home/transit/handler/src/main/net/dpml/transit/Main.java
==============================================================================
--- development/main/home/transit/handler/src/main/net/dpml/transit/Main.java
(original)
+++ development/main/home/transit/handler/src/main/net/dpml/transit/Main.java
Thu Feb 3 05:17:02 2005
@@ -248,7 +248,7 @@
* Creation of a new bootstrap monitor.
* @param trace the trace enable flag
*/
- BootstrapMonitor( boolean trace )
+ public BootstrapMonitor( boolean trace )
{
m_trace = trace;
}

Modified:
development/main/home/transit/handler/src/main/net/dpml/transit/Transit.java
==============================================================================
---
development/main/home/transit/handler/src/main/net/dpml/transit/Transit.java
(original)
+++
development/main/home/transit/handler/src/main/net/dpml/transit/Transit.java
Thu Feb 3 05:17:02 2005
@@ -320,4 +320,5 @@
File user = new File( System.getProperty( "user.home" ) );
return new File( user, ".dpml" );
}
+
}

Modified:
development/main/home/transit/handler/src/main/net/dpml/transit/artifact/FileCacheHandler.java
==============================================================================
---
development/main/home/transit/handler/src/main/net/dpml/transit/artifact/FileCacheHandler.java
(original)
+++
development/main/home/transit/handler/src/main/net/dpml/transit/artifact/FileCacheHandler.java
Thu Feb 3 05:17:02 2005
@@ -114,6 +114,7 @@
{
monitor.resourceRequested( artifact );
}
+
String path = artifact.getPath();
File destination = new File( m_cacheDir, path );
boolean exist = destination.exists();

Modified:
development/main/home/transit/handler/src/main/net/dpml/transit/artifact/SecuredTransitContext.java
==============================================================================
---
development/main/home/transit/handler/src/main/net/dpml/transit/artifact/SecuredTransitContext.java
(original)
+++
development/main/home/transit/handler/src/main/net/dpml/transit/artifact/SecuredTransitContext.java
Thu Feb 3 05:17:02 2005
@@ -280,8 +280,7 @@
* ${dpml.home}/dpml.transit.authority. If this file does not exist the
* implementation will attempt to locate an authority file in the
directory
* referenced by the system property "java.ext.dirs". If not file is
found
- * the implementation will assume ${dpml.home}/transit as the authorative
- * root directory.
+ * the implementation will assume http://repository.dpml.net.
*
* @param monitor the bootstrap monitor
* @return the authorative url
@@ -378,7 +377,7 @@
monitor.trace( message );
}

- return new File( Transit.DPML_HOME, "transit" ).toURL();
+ return new URL( "http://repository.dpml.net"; );

}
catch( Exception e )

Modified: development/main/home/transit/plugin/build.properties
==============================================================================
--- development/main/home/transit/plugin/build.properties (original)
+++ development/main/home/transit/plugin/build.properties Thu Feb 3
05:17:02 2005
@@ -1,5 +1,5 @@

-transit.home = ../..
+home = ../..
project.test.fork = true
project.group = dpml/transit
project.name = dpml-transit-plugin

Modified: development/main/home/transit/plugin/build.xml
==============================================================================
--- development/main/home/transit/plugin/build.xml (original)
+++ development/main/home/transit/plugin/build.xml Thu Feb 3 05:17:02
2005
@@ -20,8 +20,8 @@

<project name="dpml-transit-plugin" default="install" basedir=".">

- <property file="build.properties"/>
- <import file="${transit.home}/standard.xml"/>
+ <property file="${basedir}/build.properties"/>
+ <import file="${home}/standard.xml"/>

<target name="init" depends="standard.init">


Modified: development/main/home/transit/tools/build.properties
==============================================================================
--- development/main/home/transit/tools/build.properties (original)
+++ development/main/home/transit/tools/build.properties Thu Feb 3
05:17:02 2005
@@ -1,5 +1,5 @@

-transit.home = ../..
+home = ../..
project.group = dpml/transit
project.name = dpml-transit-tools
project.antlib = ${project.name}.jar

Modified: development/main/home/transit/tools/build.xml
==============================================================================
--- development/main/home/transit/tools/build.xml (original)
+++ development/main/home/transit/tools/build.xml Thu Feb 3 05:17:02
2005
@@ -20,8 +20,8 @@

<project name="dpml-transit-tools" default="install" basedir=".">

- <property file="build.properties"/>
- <import file="${transit.home}/standard.xml"/>
+ <property file="${basedir}/build.properties"/>
+ <import file="${home}/standard.xml"/>

<target name="setup-path" depends="init">
<path id="project.main.path">

Modified: development/main/home/util/build.properties
==============================================================================
--- development/main/home/util/build.properties (original)
+++ development/main/home/util/build.properties Thu Feb 3 05:17:02 2005
@@ -1,5 +1,5 @@

-transit.home = ..
+home = ..
project.test.fork = true
project.group = dpml/util
project.name = dpml-util

Modified: development/main/home/util/build.xml
==============================================================================
--- development/main/home/util/build.xml (original)
+++ development/main/home/util/build.xml Thu Feb 3 05:17:02 2005
@@ -21,9 +21,8 @@

<project name="dpml-util" default="install" basedir=".">

- <property file="build.properties"/>
- <import file="${transit.home}/standard.xml"/>
- <property file="${transit.home}/common.properties"/>
+ <property file="${basedir}/build.properties"/>
+ <import file="${home}/standard.xml"/>

<target name="init" depends="standard.init">
<filter token="PROJECT-VERSION" value="${project.version}"/>
@@ -55,9 +54,9 @@
<fileset dir="i18n/target/build/main"/>
<bottom><![CDATA[<i>Collective Work Copyright &#169; 2004-2005 The <a
href="http://www.dpml.net";>Digial Product Meta Library.</a> All Rights
Reserved.</i>]]></bottom>
<link offline="true" href="http://java.sun.com/j2se/1.4/docs/api";
- packagelistloc="${transit.home}/etc/jdk"/>
+ packagelistloc="${home}/etc/jdk"/>
<link offline="true" href="http://www.dpml.net/api/commons-cli/1.0";
- packagelistloc="${transit.home}/etc/commons-cli"/>
+ packagelistloc="${home}/etc/commons-cli"/>
<classpath>
<pathelement location="${dpml.home}/cache/${commons-cli.path}"/>
</classpath>

Modified: development/main/home/util/cli/build.properties
==============================================================================
--- development/main/home/util/cli/build.properties (original)
+++ development/main/home/util/cli/build.properties Thu Feb 3 05:17:02
2005
@@ -1,5 +1,5 @@

-transit.home = ../..
+home = ../..
project.test.fork = true
project.group = dpml/util
project.name = dpml-util-cli

Modified: development/main/home/util/cli/build.xml
==============================================================================
--- development/main/home/util/cli/build.xml (original)
+++ development/main/home/util/cli/build.xml Thu Feb 3 05:17:02 2005
@@ -20,9 +20,8 @@

<project name="dpml-util-cli" default="install" basedir=".">

- <property file="build.properties"/>
- <import file="${transit.home}/standard.xml"/>
- <property file="${transit.home}/common.properties"/>
+ <property file="${basedir}/build.properties"/>
+ <import file="${home}/standard.xml"/>

<target name="init" depends="standard.init,commons-cli-install"/>


Modified: development/main/home/util/criteria/build.properties
==============================================================================
--- development/main/home/util/criteria/build.properties (original)
+++ development/main/home/util/criteria/build.properties Thu Feb 3
05:17:02 2005
@@ -1,5 +1,5 @@

-transit.home = ../..
+home = ../..
project.test.fork = true
project.group = dpml/util
project.name = dpml-util-criteria

Modified: development/main/home/util/criteria/build.xml
==============================================================================
--- development/main/home/util/criteria/build.xml (original)
+++ development/main/home/util/criteria/build.xml Thu Feb 3 05:17:02
2005
@@ -20,7 +20,7 @@

<project name="dpml-util-criteria" default="install" basedir=".">

- <property file="build.properties"/>
- <import file="${transit.home}/standard.xml"/>
+ <property file="${basedir}/build.properties"/>
+ <import file="${home}/standard.xml"/>

</project>

Modified: development/main/home/util/exception/build.properties
==============================================================================
--- development/main/home/util/exception/build.properties (original)
+++ development/main/home/util/exception/build.properties Thu Feb 3
05:17:02 2005
@@ -1,5 +1,5 @@

-transit.home = ../..
+home = ../..
project.test.fork = true
project.group = dpml/util
project.name = dpml-util-exception

Modified: development/main/home/util/exception/build.xml
==============================================================================
--- development/main/home/util/exception/build.xml (original)
+++ development/main/home/util/exception/build.xml Thu Feb 3 05:17:02
2005
@@ -20,7 +20,7 @@

<project name="dpml-util-exception" default="install" basedir=".">

- <property file="build.properties"/>
- <import file="${transit.home}/standard.xml"/>
+ <property file="${basedir}/build.properties"/>
+ <import file="${home}/standard.xml"/>

</project>

Modified: development/main/home/util/i18n/build.properties
==============================================================================
--- development/main/home/util/i18n/build.properties (original)
+++ development/main/home/util/i18n/build.properties Thu Feb 3 05:17:02
2005
@@ -1,7 +1,6 @@

-transit.home = ../..
+home = ../..
project.test.fork = true
project.group = dpml/util
project.name = dpml-util-i18n
-junit-filename = junit-3.8.1.jar
project.specification.version = 1.0

Modified: development/main/home/util/i18n/build.xml
==============================================================================
--- development/main/home/util/i18n/build.xml (original)
+++ development/main/home/util/i18n/build.xml Thu Feb 3 05:17:02 2005
@@ -20,7 +20,7 @@

<project name="dpml-util-i18n" default="install" basedir=".">

- <property file="build.properties"/>
- <import file="${transit.home}/standard.xml"/>
+ <property file="${basedir}/build.properties"/>
+ <import file="${home}/standard.xml"/>

</project>



  • svn commit: r1704 - in development/main/home: . transit transit/handler transit/handler/etc/setup/authority transit/handler/src/main/net/dpml/transit transit/handler/src/main/net/dpml/transit/artifact transit/plugin transit/tools util util/cli util/criteria util/exception util/i18n, mcconnell, 02/02/2005

Archive powered by MHonArc 2.6.24.

Top of Page