Skip to Content.
Sympa Menu

notify-dpml - svn commit: r1990 - in development/laboratory/plus: . test test/example test/example/api test/example/api/src test/example/api/src/main test/example/api/src/main/net test/example/api/src/main/net/dpml test/example/api/src/main/net/dpml/test test/example/api/src/main/net/dpml/test/hello test/example/impl test/example/impl/src test/example/impl/src/main test/example/impl/src/main/net test/example/impl/src/main/net/dpml test/example/impl/src/main/net/dpml/test test/example/impl/src/main/net/dpml/test/hello test/example/impl/src/main/net/dpml/test/hello/impl test/execution test/execution/src/test/net/dpml/test/execution test/execution/src/test/net/dpml/test/test

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell AT dpml.net
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r1990 - in development/laboratory/plus: . test test/example test/example/api test/example/api/src test/example/api/src/main test/example/api/src/main/net test/example/api/src/main/net/dpml test/example/api/src/main/net/dpml/test test/example/api/src/main/net/dpml/test/hello test/example/impl test/example/impl/src test/example/impl/src/main test/example/impl/src/main/net test/example/impl/src/main/net/dpml test/example/impl/src/main/net/dpml/test test/example/impl/src/main/net/dpml/test/hello test/example/impl/src/main/net/dpml/test/hello/impl test/execution test/execution/src/test/net/dpml/test/execution test/execution/src/test/net/dpml/test/test
  • Date: Tue, 08 Mar 2005 16:16:50 -0500

Author: mcconnell AT dpml.net
Date: Tue Mar 8 16:16:50 2005
New Revision: 1990

Added:
development/laboratory/plus/test/build.xml
development/laboratory/plus/test/example/
development/laboratory/plus/test/example/api/
development/laboratory/plus/test/example/api/build.xml
development/laboratory/plus/test/example/api/src/
development/laboratory/plus/test/example/api/src/main/
development/laboratory/plus/test/example/api/src/main/net/
development/laboratory/plus/test/example/api/src/main/net/dpml/
development/laboratory/plus/test/example/api/src/main/net/dpml/test/
development/laboratory/plus/test/example/api/src/main/net/dpml/test/hello/

development/laboratory/plus/test/example/api/src/main/net/dpml/test/hello/Hello.java
development/laboratory/plus/test/example/build.xml
development/laboratory/plus/test/example/impl/
development/laboratory/plus/test/example/impl/build.xml
development/laboratory/plus/test/example/impl/src/
development/laboratory/plus/test/example/impl/src/main/
development/laboratory/plus/test/example/impl/src/main/net/
development/laboratory/plus/test/example/impl/src/main/net/dpml/
development/laboratory/plus/test/example/impl/src/main/net/dpml/test/
development/laboratory/plus/test/example/impl/src/main/net/dpml/test/hello/

development/laboratory/plus/test/example/impl/src/main/net/dpml/test/hello/impl/

development/laboratory/plus/test/example/impl/src/main/net/dpml/test/hello/impl/HelloComponent.java

development/laboratory/plus/test/execution/src/test/net/dpml/test/execution/
- copied from r1989,
development/laboratory/plus/test/execution/src/test/net/dpml/test/test/
Removed:
development/laboratory/plus/test/execution/src/test/net/dpml/test/test/
Modified:
development/laboratory/plus/index.xml
development/laboratory/plus/test/execution/build.xml
Log:


Modified: development/laboratory/plus/index.xml
==============================================================================
--- development/laboratory/plus/index.xml (original)
+++ development/laboratory/plus/index.xml Tue Mar 8 16:16:50 2005
@@ -80,10 +80,37 @@
</dependencies>
</project>

+ <project basedir="test/example/api">
+ <info>
+ <group>dpml/metro</group>
+ <name>dpml-test-hello-api</name>
+ <version>1.0.0</version>
+ <status>SNAPSHOT</status>
+ <types>
+ <type>jar</type>
+ </types>
+ </info>
+ </project>
+
+ <project basedir="test/example/impl">
+ <info>
+ <group>dpml/metro</group>
+ <name>dpml-test-hello-impl</name>
+ <version>1.0.0</version>
+ <status>SNAPSHOT</status>
+ <types>
+ <type>jar</type>
+ </types>
+ </info>
+ <dependencies>
+ <include key="dpml-test-hello-api"/>
+ </dependencies>
+ </project>
+
<project basedir="test/execution">
<info>
<group>dpml/metro</group>
- <name>dpml-metro-execution-test</name>
+ <name>dpml-test-execution</name>
<version>1.0.0</version>
<status>SNAPSHOT</status>
<types>
@@ -93,6 +120,7 @@
<dependencies>
<include key="dpml-transit-main"/>
<include key="dpml-composition-builder"/>
+ <include key="dpml-test-hello-impl"/>
</dependencies>
</project>


Added: development/laboratory/plus/test/build.xml
==============================================================================
--- (empty file)
+++ development/laboratory/plus/test/build.xml Tue Mar 8 16:16:50 2005
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<project name="dpml-test" default="default" basedir="."
+ xmlns:transit="antlib:net.dpml.transit">
+
+ <transit:import uri="artifact:template:dpml/magic/reactor"/>
+
+</project>
+

Added: development/laboratory/plus/test/example/api/build.xml
==============================================================================
--- (empty file)
+++ development/laboratory/plus/test/example/api/build.xml Tue Mar 8
16:16:50 2005
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<project name="dpml-test-hello-api" default="install" basedir="."
+ xmlns:transit="antlib:net.dpml.transit"
+ xmlns:x="plugin:dpml/magic/dpml-magic-core" >
+
+ <transit:import uri="artifact:template:dpml/magic/standard"/>
+
+</project>
+

Added:
development/laboratory/plus/test/example/api/src/main/net/dpml/test/hello/Hello.java
==============================================================================
--- (empty file)
+++
development/laboratory/plus/test/example/api/src/main/net/dpml/test/hello/Hello.java
Tue Mar 8 16:16:50 2005
@@ -0,0 +1,30 @@
+/*
+ * Copyright (c) 2005 Stephen J. McConnell
+ *
+ * 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.
+ */
+
+package net.dpml.test.hello;
+
+/**
+ * A demonstration hello component.
+ *
+ * @author <a href="mailto:dev-dpml AT lists.ibiblio.org";>The Digital Product
Meta Library</a>
+ * @version $Revision: 1.2 $ $Date: 2004/03/17 10:30:09 $
+ */
+public interface Hello
+{
+ void sayHello();
+}

Added: development/laboratory/plus/test/example/build.xml
==============================================================================
--- (empty file)
+++ development/laboratory/plus/test/example/build.xml Tue Mar 8 16:16:50
2005
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<project name="dpml-composition" default="default" basedir="."
+ xmlns:transit="antlib:net.dpml.transit">
+
+ <transit:import uri="artifact:template:dpml/magic/reactor"/>
+
+</project>
+

Added: development/laboratory/plus/test/example/impl/build.xml
==============================================================================
--- (empty file)
+++ development/laboratory/plus/test/example/impl/build.xml Tue Mar 8
16:16:50 2005
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<project name="dpml-test-hello-impl" default="install" basedir="."
+ xmlns:transit="antlib:net.dpml.transit"
+ xmlns:x="plugin:dpml/magic/dpml-magic-core" >
+
+ <transit:import uri="artifact:template:dpml/magic/standard"/>
+
+</project>
+

Added:
development/laboratory/plus/test/example/impl/src/main/net/dpml/test/hello/impl/HelloComponent.java
==============================================================================
--- (empty file)
+++
development/laboratory/plus/test/example/impl/src/main/net/dpml/test/hello/impl/HelloComponent.java
Tue Mar 8 16:16:50 2005
@@ -0,0 +1,35 @@
+/*
+ * Copyright (c) 2005 Stephen J. McConnell
+ *
+ * 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.
+ */
+
+package net.dpml.test.hello.impl;
+
+import net.dpml.test.hello.Hello;
+
+/**
+ * A demonstration hello component.
+ *
+ * @author <a href="mailto:dev-dpml AT lists.ibiblio.org";>The Digital Product
Meta Library</a>
+ * @version $Revision: 1.2 $ $Date: 2004/03/17 10:30:09 $
+ */
+public class HelloComponent implements Hello
+{
+ public void sayHello()
+ {
+ System.out.println( "hello" );
+ }
+}

Modified: development/laboratory/plus/test/execution/build.xml
==============================================================================
--- development/laboratory/plus/test/execution/build.xml (original)
+++ development/laboratory/plus/test/execution/build.xml Tue Mar 8
16:16:50 2005
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>

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

@@ -14,7 +14,7 @@

<target name="package" depends="standard.package">
<component xmlns="plugin:dpml/metro/dpml-composition-builder"
- class="net.dpml.demo.HelloComponent" name="hello"/>
+ class="net.dpml.test.hello.impl.HelloComponent" name="hello"/>
</target>

</project>



  • svn commit: r1990 - in development/laboratory/plus: . test test/example test/example/api test/example/api/src test/example/api/src/main test/example/api/src/main/net test/example/api/src/main/net/dpml test/example/api/src/main/net/dpml/test test/example/api/src/main/net/dpml/test/hello test/example/impl test/example/impl/src test/example/impl/src/main test/example/impl/src/main/net test/example/impl/src/main/net/dpml test/example/impl/src/main/net/dpml/test test/example/impl/src/main/net/dpml/test/hello test/example/impl/src/main/net/dpml/test/hello/impl test/execution test/execution/src/test/net/dpml/test/execution test/execution/src/test/net/dpml/test/test, mcconnell, 03/08/2005

Archive powered by MHonArc 2.6.24.

Top of Page