Skip to Content.
Sympa Menu

notify-dpml - svn commit: r1241 - in development/main/metro: . activity activity/api activity/api/src activity/src

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: r1241 - in development/main/metro: . activity activity/api activity/api/src activity/src
  • Date: Thu, 16 Dec 2004 16:14:08 +0100

Author: mcconnell
Date: Thu Dec 16 16:14:08 2004
New Revision: 1241

Added:
development/main/metro/README.TXT
development/main/metro/activity/api/build.xml
- copied unchanged from r1239, development/main/metro/activity/build.xml
development/main/metro/activity/api/src/
- copied from r1239, development/main/metro/activity/src/
Removed:
development/main/metro/activity/build.xml
development/main/metro/activity/src/
Modified:
development/main/metro/index.xml
Log:
tweak and bump

Added: development/main/metro/README.TXT
==============================================================================
--- (empty file)
+++ development/main/metro/README.TXT Thu Dec 16 16:14:08 2004
@@ -0,0 +1,91 @@
+
+The runtime tree contains code dealing with the refactoring of the codebase
to enable the establishment of the repository management subsystem as a
top-level plugin controller capable of launching and running the metro, magic
or anything other system. The code structure and content is described below:
+
+ runtime/transit
+
+ The transit main package includes a bootstrapping system supporting
+ initialiozation of transit from the command line, from ant, and classic
+ embedding scenarios. The code includes the repository APIs, controller
+ interface, repository monitors, and the basic code code of the repository
+ loading utility. The implementation has a weak dependency on the transit
+ plugin which in turn is used to establish the fully functional transit
+ kernel.
+
+ The transit/plugin is a plugin implementation that is the transit plugin
+ controller. It is establish by transit/main and is responsible for the
+ management of the execution of a single target plugin (the application).
+ The objective is to enable the execution of a target application such
+ as merlin or magic by delegating command line arguments through the
+ boostrap and controller to the target. The net result will be the
+ elimination of repository and classloader managment code in both merlin
+ and magic and the elimination of logging system concerns from the merlin
+ system.
+
+ runtime/util
+
+ The util package is derived from the avalon-util pacakages with some
+ degree of rationalization. The Env content has been folded into the
+ transit main package and the crieteria, defauolts, exception and i18n
+ packages are setup under the metro namespace and used in conjunction with
+ the transit plugin controller implementation.
+
+ runtime/logging/
+
+ Responsibility for the establishment of a logging system has been moved
+ from the deplioyed plugion to the plugin controller. The code in this
+ section is based on the 3.3.0 runtime/logging package with changes to
+ synchronize with the transit plugin model. The logkit plugin has been
+ rationalized through folding together of current logkit with the logging
+ logkit plugin classes together with strict sepatation of target subsystem
+ as sub-plugin plugins. In addition the logigng factory critera have been
+ separated into a shared library and the Log4J plugin has been updated to
+ support the transit plugin model.
+
+ runtime/configuration
+
+ Refactoring of the framework configration and util-configuration into a
+ api and impl package under a new package namespace. The different is
+ primarily related to the frequent use of configuration models outside of
+ a fomal component scenario and the need to redefine the error handling
+ model without the restrictions implied by framework.
+
+ runtime/extension
+
+ Code is basically a direct fork of the util-extension poackage placed
+ here as this needs to be folded into the transit package, enabling the
+ elimination of any classloading management from managed applications.
+
+ runtime/meta
+
+ The meta info api, spi and an avalon provider.
+
+Examples:
+
+ The following example shows how metro can be used to simply download
+ an artifact to the local cache:
+
+ $ metro -get artifact:saxon/saxon#6.5.3 -overwrite
+
+ The following example demonstrates a request for the controler to
+ download and run a plugin:
+
+ $ metro -load artifact:dpml/transit/dpml-transit-demo#SNAPSHOT -execute
+ [INFO ] (metro): Hello.
+
+ Or to see cli arguments passed to the target:
+
+ $ metro -load artifact:dpml/transit/dpml-transit-demo#SNAPSHOT -execute
+ -message "Hello Fred"
+ [INFO ] (metro): Hello Fred
+
+ Both examples assume that you have a properties file named metro.properties
+ that includes the property metro.hosts with a comma separated list of
+ remote repositories from which respective resources can be resolved. There
+ are also a bunch of metro.initial.* properties that define the initial
+ boostrap cache, hosts, proxy setting etc. THe environment variable
METRO_HOME
+ is used which is similer to Magic in that the default cache is
+ %METRO_HOME%/main.
+
+
+Copyright 2004 The Digital Product Meta Library
+

Modified: development/main/metro/index.xml
==============================================================================
--- development/main/metro/index.xml (original)
+++ development/main/metro/index.xml Thu Dec 16 16:14:08 2004
@@ -4,10 +4,6 @@

<import index="../magic/index.xml"/>
<import index="tutorials/index.xml"/>
- <!--<import index="public/index.xml"/>
- <import index="protected/index.xml"/>
- <import index="private/index.xml"/>
- <import index="tools/index.xml"/> -->

<!--
Metro Modules
@@ -70,7 +66,7 @@

<!-- Activity -->

- <project basedir="public/activity">
+ <project basedir="activity/api">
<info>
<group>dpml/metro/public</group>
<name>dpml-activity-api</name>
@@ -81,7 +77,7 @@

<!-- Configuration -->

- <project basedir="public/configuration">
+ <project basedir="configuration/api">
<info>
<group>dpml/metro/public</group>
<name>dpml-configuration-api</name>
@@ -90,9 +86,21 @@
</info>
</project>

+ <project basedir="configuration/impl">
+ <info>
+ <group>dpml/metro/private</group>
+ <name>dpml-configuration-impl</name>
+ <version>1.0.0</version>
+ <status>SNAPSHOT</status>
+ </info>
+ <dependencies>
+ <include key="dpml-configuration-api"/>
+ </dependencies>
+ </project>
+
<!-- Parameters -->

- <project basedir="public/parameters">
+ <project basedir="parameters/api">
<info>
<group>dpml/metro/public</group>
<name>dpml-parameters-api</name>
@@ -101,9 +109,22 @@
</info>
</project>

+ <project basedir="parameters/impl">
+ <info>
+ <group>dpml/metro/private</group>
+ <name>dpml-parameters-impl</name>
+ <version>1.0.0</version>
+ <status>SNAPSHOT</status>
+ </info>
+ <dependencies>
+ <include key="dpml-parameters-api"/>
+ <include key="dpml-configuration-api"/>
+ </dependencies>
+ </project>
+
<!-- Context -->

- <project basedir="public/context">
+ <project basedir="context/api">
<info>
<group>dpml/metro/public</group>
<name>dpml-context-api</name>
@@ -112,9 +133,21 @@
</info>
</project>

+ <project basedir="context/impl">
+ <info>
+ <group>dpml/metro/private</group>
+ <name>dpml-context-impl</name>
+ <version>1.0.0</version>
+ <status>SNAPSHOT</status>
+ </info>
+ <dependencies>
+ <include key="dpml-context-api"/>
+ </dependencies>
+ </project>
+
<!-- Service -->

- <project basedir="public/service">
+ <project basedir="service/api">
<info>
<group>dpml/metro/public</group>
<name>dpml-service-api</name>
@@ -125,7 +158,7 @@

<!-- Logging -->

- <project basedir="public/logging">
+ <project basedir="logging/api">
<info>
<group>dpml/metro/public</group>
<name>dpml-logging-api</name>
@@ -134,11 +167,54 @@
</info>
</project>

- <!-- FROM TOOLS INDEX -->
-
<!-- Meta -->

- <project basedir="tools/meta">
+ <project basedir="meta/api">
+ <info>
+ <group>dpml/metro/protected</group>
+ <name>dpml-meta-api</name>
+ <version>1.0.0</version>
+ <status>SNAPSHOT</status>
+ </info>
+ <dependencies>
+ <include key="dpml-parameters-api"/>
+ <include key="dpml-configuration-api"/>
+ <include key="dpml-configuration-impl" build="false" test="true"
runtime="false"/>
+ <include key="dpml-parameters-impl" build="false" test="true"
runtime="false"/>
+ </dependencies>
+ </project>
+
+ <project basedir="meta/spi">
+ <info>
+ <group>dpml/metro/private</group>
+ <name>dpml-meta-spi</name>
+ <version>1.0.0</version>
+ <status>SNAPSHOT</status>
+ </info>
+ <dependencies>
+ <include key="dpml-meta-api"/>
+ <include key="dpml-configuration-api"/>
+ <include key="dpml-parameters-api"/>
+ </dependencies>
+ </project>
+
+ <project basedir="meta/impl">
+ <info>
+ <group>dpml/metro/private</group>
+ <name>dpml-meta-impl</name>
+ <version>1.0.0</version>
+ <status>SNAPSHOT</status>
+ </info>
+ <dependencies>
+ <include key="dpml-meta-spi"/>
+ <include key="dpml-util-i18n"/>
+ <include key="dpml-configuration-impl"/>
+ <include key="dpml-parameters-impl"/>
+ <include key="dpml-service-api"/>
+ </dependencies>
+ </project>
+
+ <project basedir="meta/tools">
<info>
<group>dpml/metro/tools</group>
<name>dpml-meta-tools</name>
@@ -155,7 +231,7 @@

<!-- Metro -->

- <project basedir="tools/main">
+ <project basedir="main">
<info>
<group>dpml/metro/tools</group>
<name>dpml-metro-main</name>
@@ -180,7 +256,7 @@
</dependencies>
</project>

- <project basedir="tools/unit">
+ <project basedir="unit">
<info>
<group>dpml/metro/tools</group>
<name>dpml-metro-unit</name>
@@ -200,7 +276,7 @@

<!-- Extension -->

- <project basedir="protected/extension">
+ <project basedir="extension/api">
<info>
<group>dpml/metro/protected</group>
<name>dpml-extension-api</name>
@@ -209,37 +285,21 @@
</info>
</project>

- <!-- Logging -->
-
- <project basedir="protected/logging">
+ <project basedir="extension/impl">
<info>
- <group>dpml/metro/protected</group>
- <name>dpml-logging-data</name>
+ <group>dpml/metro/private</group>
+ <name>dpml-extension-impl</name>
<version>1.0.0</version>
<status>SNAPSHOT</status>
</info>
- </project>
-
- <!-- Meta -->
-
- <project basedir="protected/meta">
- <info>
- <group>dpml/metro/protected</group>
- <name>dpml-meta-api</name>
- <version>1.0.0</version>
- <status>SNAPSHOT</status>
- </info>
<dependencies>
- <include key="dpml-parameters-api"/>
- <include key="dpml-configuration-api"/>
- <include key="dpml-configuration-impl" build="false" test="true"
runtime="false"/>
- <include key="dpml-parameters-impl" build="false" test="true"
runtime="false"/>
+ <include key="dpml-extension-api"/>
</dependencies>
</project>

<!-- Composition -->

- <project basedir="protected/composition">
+ <project basedir="composition/api">
<info>
<group>dpml/metro/protected</group>
<name>dpml-composition-api</name>
@@ -262,80 +322,97 @@
</dependencies>
</project>

- <!-- FROM METRO PRIVATE -->
-
- <!-- Utitlities -->
-
- <project basedir="private/util/defaults">
- <info>
- <group>dpml/metro/private</group>
- <name>dpml-util-defaults</name>
- <version>1.0.0</version>
- <status>SNAPSHOT</status>
- <type>jar</type>
- </info>
- </project>
-
- <!-- Configuration -->
+ <!-- Composition -->

- <project basedir="private/configuration">
+ <project basedir="composition/spi">
<info>
<group>dpml/metro/private</group>
- <name>dpml-configuration-impl</name>
+ <name>dpml-composition-spi</name>
<version>1.0.0</version>
- <status>SNAPSHOT</status>
+ <status>SNAPSHOT</status>
</info>
<dependencies>
- <include key="dpml-configuration-api"/>
+ <include key="dpml-system-spi"/>
+ <include key="dpml-composition-api"/>
+ <include key="dpml-logging-spi"/>
</dependencies>
</project>

- <!-- Parameters -->
-
- <project basedir="private/parameters">
+ <project basedir="composition/impl">
<info>
<group>dpml/metro/private</group>
- <name>dpml-parameters-impl</name>
+ <name>dpml-composition-impl</name>
<version>1.0.0</version>
- <status>SNAPSHOT</status>
+ <status>SNAPSHOT</status>
</info>
<dependencies>
- <include key="dpml-parameters-api"/>
- <include key="dpml-configuration-api"/>
+ <include key="dpml-transit-main" tag="api"/>
+ <include key="dpml-logging-api" tag="api"/>
+ <include key="dpml-activity-api" tag="api"/>
+ <include key="dpml-parameters-api" tag="api"/>
+ <include key="dpml-composition-api" tag="api"/>
+ <include key="dpml-configuration-api" tag="api"/>
+ <include key="dpml-service-api" tag="api"/>
+ <include key="dpml-meta-api" tag="api"/>
+ <include key="dpml-extension-api" tag="api"/>
+ <include key="dpml-composition-spi" tag="spi"/>
+ <include key="dpml-meta-spi" tag="spi"/>
+ <include key="dpml-configuration-impl"/>
+ <include key="dpml-meta-impl"/>
+ <include key="dpml-extension-api" tag="spi"/>
+ <include key="dpml-extension-impl"/>
+ <include key="dpml-util-exception"/>
+ <include key="dpml-context-impl"/>
+ <include key="dpml-util-criteria"/>
+ <include key="dpml-util-cli"/>
+ <include key="dpml-activation-impl" build="false"/>
+ <include key="dpml-test-playground" build="false"/>
</dependencies>
</project>

- <!-- Context -->
-
- <project basedir="private/context">
+ <project basedir="composition/test">
<info>
- <group>dpml/metro/private</group>
- <name>dpml-context-impl</name>
+ <group>dpml/test</group>
+ <name>dpml-composition-test</name>
<version>1.0.0</version>
- <status>SNAPSHOT</status>
+ <status>SNAPSHOT</status>
</info>
<dependencies>
- <include key="dpml-context-api"/>
+ <include key="dpml-system-spi"/>
+ <include key="dpml-composition-spi"/>
+ <include key="dpml-composition-impl"/>
+ <include key="dpml-system-impl" test="false"/>
+ <include key="dpml-composition-impl" test="false"/>
+ <include key="dpml-util-exception"/>
+ <include key="dpml-test-testa" test="false"/>
+ <include key="dpml-test-testb" test="false"/>
+ <include key="dpml-test-testc" test="false"/>
+ <include key="dpml-test-testcyclic" test="false"/>
+ <include key="dpml-test-includes" test="false"/>
+ <include key="dpml-test-dynamics" test="false"/>
+ <include key="dpml-system-impl" build="false"/>
+ <include key="dpml-logging-logkit-impl" build="false"/>
+ <include key="dpml-test-testschema"/>
</dependencies>
</project>

- <!-- Extension -->
+ <!-- Utitlities -->

- <project basedir="private/extension/impl">
+ <project basedir="util/defaults">
<info>
<group>dpml/metro/private</group>
- <name>dpml-extension-impl</name>
+ <name>dpml-util-defaults</name>
<version>1.0.0</version>
<status>SNAPSHOT</status>
+ <type>jar</type>
</info>
- <dependencies>
- <include key="dpml-extension-api"/>
- </dependencies>
</project>

+ <!-- Extension -->
+
<!-- System -->

- <project basedir="private/system/api">
+ <project basedir="system/api">
<info>
<group>dpml/metro/private</group>
<name>dpml-system-api</name>
@@ -347,7 +424,7 @@
</dependencies>
</project>

- <project basedir="private/system/spi">
+ <project basedir="system/spi">
<info>
<group>dpml/metro/private</group>
<name>dpml-system-spi</name>
@@ -361,7 +438,7 @@
</dependencies>
</project>

- <project basedir="private/system/impl">
+ <project basedir="system/impl">
<info>
<group>dpml/metro/private</group>
<name>dpml-system-impl</name>
@@ -378,7 +455,7 @@
</dependencies>
</project>

- <project basedir="private/system/test">
+ <project basedir="system/test">
<info>
<group>dpml/test</group>
<name>dpml-system-test</name>
@@ -391,24 +468,18 @@
</dependencies>
</project>

- <project basedir="private/system/demo">
+ <!-- Logging -->
+
+ <project basedir="logging/data">
<info>
- <group>dpml/test</group>
- <name>dpml-system-demo</name>
+ <group>dpml/metro/protected</group>
+ <name>dpml-logging-data</name>
<version>1.0.0</version>
- <status>SNAPSHOT</status>
+ <status>SNAPSHOT</status>
</info>
- <dependencies>
- <include key="commons-cli"/>
- <include key="dpml-util-i18n"/>
- <include key="dpml-logging-api" tag="api"/>
- <include key="dpml-system-impl" build="false"/>
- </dependencies>
</project>

- <!-- Logging -->
-
- <project basedir="private/logging/spi">
+ <project basedir="logging/spi">
<info>
<group>dpml/metro/private</group>
<name>dpml-logging-spi</name>
@@ -423,7 +494,7 @@
</dependencies>
</project>

- <project basedir="private/logging/criteria">
+ <project basedir="logging/criteria">
<info>
<group>dpml/metro/private</group>
<name>dpml-logging-criteria</name>
@@ -438,7 +509,7 @@
</dependencies>
</project>

- <project basedir="private/logging/providers/log4j/impl">
+ <project basedir="logging/providers/log4j/impl">
<info>
<group>dpml/metro/private</group>
<name>dpml-logging-log4j</name>
@@ -454,7 +525,7 @@
</dependencies>
</project>

- <project basedir="private/logging/providers/log4j/test">
+ <project basedir="logging/providers/log4j/test">
<info>
<group>dpml/test</group>
<name>dpml-logging-log4j-test</name>
@@ -468,7 +539,7 @@
</dependencies>
</project>

- <project basedir="private/logging/providers/logkit/api">
+ <project basedir="logging/providers/logkit/api">
<info>
<group>dpml/metro/private</group>
<name>dpml-logging-logkit-api</name>
@@ -481,7 +552,7 @@
</dependencies>
</project>

- <project basedir="private/logging/providers/logkit/impl">
+ <project basedir="logging/providers/logkit/impl">
<info>
<group>dpml/metro/private</group>
<name>dpml-logging-logkit-impl</name>
@@ -499,7 +570,7 @@
</dependencies>
</project>

- <project basedir="private/logging/providers/logkit/plugins/datagram">
+ <project basedir="logging/providers/logkit/plugins/datagram">
<info>
<group>dpml/metro/private</group>
<name>dpml-logging-logkit-datagram</name>
@@ -513,7 +584,7 @@
</dependencies>
</project>

- <project basedir="private/logging/providers/logkit/plugins/socket">
+ <project basedir="logging/providers/logkit/plugins/socket">
<info>
<group>dpml/metro/private</group>
<name>dpml-logging-logkit-socket</name>
@@ -527,7 +598,7 @@
</dependencies>
</project>

- <project basedir="private/logging/providers/logkit/plugins/syslog">
+ <project basedir="logging/providers/logkit/plugins/syslog">
<info>
<group>dpml/metro/private</group>
<name>dpml-logging-logkit-syslog</name>
@@ -542,7 +613,7 @@
</dependencies>
</project>

- <project basedir="private/logging/providers/logkit/test">
+ <project basedir="logging/providers/logkit/test">
<info>
<group>dpml/test</group>
<name>dpml-logging-logkit-test</name>
@@ -559,118 +630,11 @@
</dependencies>
</project>

- <!-- Meta -->
-
- <project basedir="private/meta/spi">
- <info>
- <group>dpml/metro/private</group>
- <name>dpml-meta-spi</name>
- <version>1.0.0</version>
- <status>SNAPSHOT</status>
- </info>
- <dependencies>
- <include key="dpml-meta-api"/>
- <include key="dpml-configuration-api"/>
- <include key="dpml-parameters-api"/>
- </dependencies>
- </project>
-
- <project basedir="private/meta/impl">
- <info>
- <group>dpml/metro/private</group>
- <name>dpml-meta-impl</name>
- <version>1.0.0</version>
- <status>SNAPSHOT</status>
- </info>
- <dependencies>
- <include key="dpml-meta-spi"/>
- <include key="dpml-util-i18n"/>
- <include key="dpml-configuration-impl"/>
- <include key="dpml-parameters-impl"/>
- <include key="dpml-service-api"/>
- </dependencies>
- </project>
-
-
- <!-- Composition -->
-
- <project basedir="private/composition/spi">
- <info>
- <group>dpml/metro/private</group>
- <name>dpml-composition-spi</name>
- <version>1.0.0</version>
- <status>SNAPSHOT</status>
- </info>
- <dependencies>
- <include key="dpml-system-spi"/>
- <include key="dpml-composition-api"/>
- <include key="dpml-logging-spi"/>
- </dependencies>
- </project>
-
- <project basedir="private/composition/impl">
- <info>
- <group>dpml/metro/private</group>
- <name>dpml-composition-impl</name>
- <version>1.0.0</version>
- <status>SNAPSHOT</status>
- </info>
- <dependencies>
- <include key="dpml-transit-main" tag="api"/>
- <include key="dpml-logging-api" tag="api"/>
- <include key="dpml-activity-api" tag="api"/>
- <include key="dpml-parameters-api" tag="api"/>
- <include key="dpml-composition-api" tag="api"/>
- <include key="dpml-configuration-api" tag="api"/>
- <include key="dpml-service-api" tag="api"/>
- <include key="dpml-meta-api" tag="api"/>
- <include key="dpml-extension-api" tag="api"/>
- <include key="dpml-composition-spi" tag="spi"/>
- <include key="dpml-meta-spi" tag="spi"/>
- <include key="dpml-configuration-impl"/>
- <include key="dpml-meta-impl"/>
- <include key="dpml-extension-api" tag="spi"/>
- <include key="dpml-extension-impl"/>
- <include key="dpml-util-exception"/>
- <include key="dpml-context-impl"/>
- <include key="dpml-util-criteria"/>
- <include key="dpml-util-cli"/>
- <include key="dpml-activation-impl" build="false"/>
- <include key="dpml-test-playground" build="false"/>
- </dependencies>
- </project>
-
- <project basedir="private/composition/test">
- <info>
- <group>dpml/test</group>
- <name>dpml-composition-test</name>
- <version>1.0.0</version>
- <status>SNAPSHOT</status>
- </info>
- <dependencies>
- <include key="dpml-system-spi"/>
- <include key="dpml-composition-spi"/>
- <include key="dpml-composition-impl"/>
- <include key="dpml-system-impl" test="false"/>
- <include key="dpml-composition-impl" test="false"/>
- <include key="dpml-util-exception"/>
- <include key="dpml-test-testa" test="false"/>
- <include key="dpml-test-testb" test="false"/>
- <include key="dpml-test-testc" test="false"/>
- <include key="dpml-test-testcyclic" test="false"/>
- <include key="dpml-test-includes" test="false"/>
- <include key="dpml-test-dynamics" test="false"/>
- <include key="dpml-system-impl" build="false"/>
- <include key="dpml-logging-logkit-impl" build="false"/>
- <include key="dpml-test-testschema"/>
- </dependencies>
- </project>
-
<!--
DPML Activation.
-->

- <project basedir="private/activation/api">
+ <project basedir="activation/api">
<info>
<group>dpml/metro/private</group>
<name>dpml-activation-api</name>
@@ -682,7 +646,7 @@
</dependencies>
</project>

- <project basedir="private/activation/providers/metro">
+ <project basedir="activation/providers/metro">
<info>
<group>dpml/metro/private</group>
<name>dpml-activation-metro-provider</name>
@@ -701,7 +665,7 @@
</dependencies>
</project>

- <project basedir="private/activation/providers/avalon">
+ <project basedir="activation/providers/avalon">
<info>
<group>dpml/metro/private</group>
<name>dpml-activation-avalon-provider</name>
@@ -724,7 +688,7 @@
</dependencies>
</project>

- <project basedir="private/activation/impl">
+ <project basedir="activation/impl">
<info>
<group>dpml/metro/private</group>
<name>dpml-activation-impl</name>
@@ -741,7 +705,7 @@
</dependencies>
</project>

- <project basedir="private/activation/test">
+ <project basedir="activation/test">
<info>
<group>dpml/test</group>
<name>dpml-activation-test</name>
@@ -759,7 +723,7 @@
Metro Test.
-->

- <project basedir="private/test/dynamics">
+ <project basedir="testing/dynamics">
<info>
<group>dpml/test</group>
<name>dpml-test-dynamics</name>
@@ -774,7 +738,7 @@
</plugins>
</project>

- <project basedir="private/test/playground">
+ <project basedir="testing/playground">
<info>
<group>dpml/test</group>
<name>dpml-test-playground</name>
@@ -794,7 +758,7 @@
</plugins>
</project>

- <project basedir="private/test/testa">
+ <project basedir="testing/testa">
<info>
<group>dpml/test</group>
<name>dpml-test-testa</name>
@@ -811,7 +775,7 @@
</plugins>
</project>

- <project basedir="private/test/testb">
+ <project basedir="testing/testb">
<info>
<group>dpml/test</group>
<name>dpml-test-testb</name>
@@ -826,7 +790,7 @@
</plugins>
</project>

- <project basedir="private/test/testc">
+ <project basedir="testing/testc">
<info>
<group>dpml/test</group>
<name>dpml-test-testc</name>
@@ -844,7 +808,7 @@
</plugins>
</project>

- <project basedir="private/test/testd">
+ <project basedir="testing/testd">
<info>
<group>dpml/test</group>
<name>dpml-test-testd</name>
@@ -861,7 +825,7 @@
</plugins>
</project>

- <project basedir="private/test/teste">
+ <project basedir="testing/teste">
<info>
<group>dpml/test</group>
<name>dpml-test-teste</name>
@@ -878,7 +842,7 @@
</plugins>
</project>

- <project basedir="private/test/testcyclic">
+ <project basedir="testing/testcyclic">
<info>
<group>dpml/test</group>
<name>dpml-test-testcyclic</name>
@@ -893,7 +857,7 @@
</plugins>
</project>

- <project basedir="private/test/testschema">
+ <project basedir="testing/testschema">
<info>
<group>dpml/test</group>
<name>dpml-test-testschema</name>
@@ -908,7 +872,7 @@
</plugins>
</project>

- <project basedir="private/test/includes">
+ <project basedir="testing/includes">
<info>
<group>dpml/test</group>
<name>dpml-test-includes</name>
@@ -924,7 +888,7 @@
</dependencies>
</project>

- <project basedir="private/test/components">
+ <project basedir="testing/components">
<info>
<group>dpml/test</group>
<name>dpml-test-components</name>



  • svn commit: r1241 - in development/main/metro: . activity activity/api activity/api/src activity/src, mcconnell, 12/16/2004

Archive powered by MHonArc 2.6.24.

Top of Page