You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jl...@apache.org on 2005/10/23 16:41:14 UTC

svn commit: r327796 - in /geronimo/devtools/trunk/sandbox/xdoclet2: ./ src/test-resources/ src/test/ src/test/org/ src/test/org/apache/ src/test/org/apache/geronimo/ src/test/org/apache/geronimo/devtools/ src/test/org/apache/geronimo/devtools/xdoclet2/...

Author: jlaskowski
Date: Sun Oct 23 07:40:52 2005
New Revision: 327796

URL: http://svn.apache.org/viewcvs?rev=327796&view=rev
Log:
GERONIMO-1102: Test cases for Geronimo XDoclet2 plugin

Added:
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test/
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test-resources/
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test-resources/log4j.properties   (with props)
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoConfigPluginTest.java   (with props)
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoServicePluginTest.java   (with props)
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.java   (with props)
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.xml   (with props)
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.java   (with props)
    geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.xml   (with props)
Modified:
    geronimo/devtools/trunk/sandbox/xdoclet2/maven.xml
    geronimo/devtools/trunk/sandbox/xdoclet2/project.xml

Modified: geronimo/devtools/trunk/sandbox/xdoclet2/maven.xml
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/sandbox/xdoclet2/maven.xml?rev=327796&r1=327795&r2=327796&view=diff
==============================================================================
--- geronimo/devtools/trunk/sandbox/xdoclet2/maven.xml (original)
+++ geronimo/devtools/trunk/sandbox/xdoclet2/maven.xml Sun Oct 23 07:40:52 2005
@@ -40,7 +40,7 @@
     <goal name="qtags">
         <mkdir dir="${basedir}/target/src"/>
         <path id="xdoclet.generated.path" location="${basedir}/target/src"/>
-        <addPath id="maven.compile.src.set" refid="xdoclet.generated.path"/>
+        <m:addPath id="maven.compile.src.set" refid="xdoclet.generated.path"/>
 
         <path id="xdoclet.task.classpath">
         <pathelement location="${basedir}/target/classes"/>
@@ -100,4 +100,4 @@
         </path>
         <!-- attainGoal name="xdoclet"/ -->
     </preGoal>
-</project>
\ No newline at end of file
+</project>

Modified: geronimo/devtools/trunk/sandbox/xdoclet2/project.xml
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/sandbox/xdoclet2/project.xml?rev=327796&r1=327795&r2=327796&view=diff
==============================================================================
--- geronimo/devtools/trunk/sandbox/xdoclet2/project.xml (original)
+++ geronimo/devtools/trunk/sandbox/xdoclet2/project.xml Sun Oct 23 07:40:52 2005
@@ -224,12 +224,19 @@
                 <dist.bundle>true</dist.bundle>
             </properties>
         </dependency>
+        <dependency>
+            <groupId>xmlunit</groupId>
+            <artifactId>xmlunit</artifactId>
+            <version>1.0</version>
+            <url>http://xmlunit.sourceforge.net</url>
+        </dependency>
     </dependencies>
     <build>
         <sourceDirectory>src/java</sourceDirectory>
+        <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
         <resources>
             <resource>
-                <directory>${basedir}/src/java</directory>
+                <directory>src/java</directory>
                 <includes>
                     <include>**/*.jelly</include>
                 </includes>
@@ -242,6 +249,22 @@
             <excludes>
                 <exclude>**/Abstract*.java</exclude>
             </excludes>
+            <resources>
+                <resource>
+                    <directory>src/test</directory>
+                    <includes>
+                        <include>**/*.java</include>
+                        <include>**/*.xml</include>
+                    </includes>
+                </resource>
+                <resource>
+                    <directory>src/test-resources</directory>
+                    <includes>
+                        <include>**/*.properties</include>
+                    </includes>
+                </resource>
+            </resources>
         </unitTest>
     </build>
-</project>
\ No newline at end of file
+</project>
+

Added: geronimo/devtools/trunk/sandbox/xdoclet2/src/test-resources/log4j.properties
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/sandbox/xdoclet2/src/test-resources/log4j.properties?rev=327796&view=auto
==============================================================================
--- geronimo/devtools/trunk/sandbox/xdoclet2/src/test-resources/log4j.properties (added)
+++ geronimo/devtools/trunk/sandbox/xdoclet2/src/test-resources/log4j.properties Sun Oct 23 07:40:52 2005
@@ -0,0 +1,29 @@
+##
+##    Copyright 2005 The Apache Software Foundation
+##
+##    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.
+##
+
+##
+## $Rev$ $Date$
+##
+
+# log4j properties for testing puproses
+log4j.rootLogger=ERROR, A1
+
+log4j.appender.A1=org.apache.log4j.ConsoleAppender
+
+log4j.appender.A1.layout=org.apache.log4j.PatternLayout
+log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n
+
+log4j.category.org.apache.geronimo.devtools.xdoclet2=DEBUG

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test-resources/log4j.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test-resources/log4j.properties
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test-resources/log4j.properties
------------------------------------------------------------------------------
    svn:keywords = author date id rev

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test-resources/log4j.properties
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoConfigPluginTest.java
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoConfigPluginTest.java?rev=327796&view=auto
==============================================================================
--- geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoConfigPluginTest.java (added)
+++ geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoConfigPluginTest.java Sun Oct 23 07:40:52 2005
@@ -0,0 +1,40 @@
+/**
+ *
+ * Copyright 2005 The Apache Software Foundation
+ *
+ *  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 org.apache.geronimo.devtools.xdoclet2;
+
+import java.net.URL;
+import org.generama.JellyTemplateEngine;
+import org.generama.tests.AbstractXMLGeneratingPluginTestCase;
+import org.xdoclet.QDoxMetadataProvider;
+
+/**
+ * @version $Rev$ $Date$
+ */
+public class GeronimoConfigPluginTest extends AbstractXMLGeneratingPluginTestCase {
+    protected org.generama.Plugin createPlugin(org.generama.MetadataProvider metadataProvider, org.generama.WriterMapper writerMapper) throws Exception {
+        return new GeronimoConfigPlugin(new JellyTemplateEngine(),(QDoxMetadataProvider)metadataProvider, writerMapper);
+    }
+    
+    protected java.net.URL getExpected() throws Exception {
+        return getResourceRelativeToThisPackage("config/TestGBean.xml");
+    }
+    
+    protected org.generama.MetadataProvider createMetadataProvider() throws Exception {
+        URL reader = this.getResourceRelativeToThisPackage("config/TestGBean.java");
+        return new QDoxMetadataProvider(reader);
+    }
+}

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoConfigPluginTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoConfigPluginTest.java
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoConfigPluginTest.java
------------------------------------------------------------------------------
    svn:keywords = author date id rev

Added: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoServicePluginTest.java
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoServicePluginTest.java?rev=327796&view=auto
==============================================================================
--- geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoServicePluginTest.java (added)
+++ geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoServicePluginTest.java Sun Oct 23 07:40:52 2005
@@ -0,0 +1,40 @@
+/**
+ *
+ * Copyright 2005 The Apache Software Foundation
+ *
+ *  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 org.apache.geronimo.devtools.xdoclet2;
+
+import java.net.URL;
+import org.generama.JellyTemplateEngine;
+import org.generama.tests.AbstractXMLGeneratingPluginTestCase;
+import org.xdoclet.QDoxMetadataProvider;
+
+/**
+ * @version $Rev$ $Date$
+ */
+public class GeronimoServicePluginTest extends AbstractXMLGeneratingPluginTestCase {
+    protected org.generama.Plugin createPlugin(org.generama.MetadataProvider metadataProvider, org.generama.WriterMapper writerMapper) throws Exception {
+        return new GeronimoServicePlugin(new JellyTemplateEngine(),(QDoxMetadataProvider)metadataProvider, writerMapper);
+    }
+    
+    protected java.net.URL getExpected() throws Exception {
+        return getResourceRelativeToThisPackage("service/TestService.xml");
+    }
+    
+    protected org.generama.MetadataProvider createMetadataProvider() throws Exception {
+        URL reader = this.getResourceRelativeToThisPackage("service/TestService.java");
+        return new QDoxMetadataProvider(reader);
+    }
+}

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoServicePluginTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoServicePluginTest.java
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/GeronimoServicePluginTest.java
------------------------------------------------------------------------------
    svn:keywords = author date id rev

Added: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.java
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.java?rev=327796&view=auto
==============================================================================
--- geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.java (added)
+++ geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.java Sun Oct 23 07:40:52 2005
@@ -0,0 +1,33 @@
+/**
+ *
+ * Copyright 2005 The Apache Software Foundation
+ *
+ *  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 org.xdoclet.plugin.geronimo.config;
+
+/**
+ * @geronimo.config config-id="MyConfigId" parent-id="MyParentId"
+ * @geronimo.config-include group-id="include-group-id" artifact-id="include-artifact-id" version="include-version"
+ * @geronimo.config-include uri="include-uri"
+ * @geronimo.config-dependency group-id="dependency-group-id" artifact-id="dependency-artifact-id" version="dependency-version"
+ * @geronimo.config-dependency uri="dependency-uri"
+ * @geronimo.config-gbean name="name" class="class"
+ * @geronimo.config-gbean-attr name="attr-name" type="attr-type" value="AttrValue"
+ * @geronimo.config-gbean-ref name="ref-name" value="RefValue"
+ * @geronimo.config-gbean-refs name="refs-name" pattern="refs-pattern"
+ *
+ * @version $Rev$ $Date$
+ */
+public class TestGBean {
+}
\ No newline at end of file

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.java
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.java
------------------------------------------------------------------------------
    svn:keywords = author date id rev

Added: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.xml
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.xml?rev=327796&view=auto
==============================================================================
--- geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.xml (added)
+++ geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.xml Sun Oct 23 07:40:52 2005
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Copyright 2005 The Apache Software Foundation
+
+    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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<configuration xmlns="http://geronimo.apache.org/xml/ns/deployment"
+    configId="MyConfigId" parentId="MyParentId">
+    
+    <include>
+        <groupId>include-group-id</groupId>
+        <artifactId>include-artifact-id</artifactId>
+        <version>include-version</version>
+    </include>
+    <include>
+        <uri>include-uri</uri>
+    </include>
+    <dependency>
+        <groupId>dependency-group-id</groupId>
+        <artifactId>dependency-artifact-id</artifactId>
+        <version>dependency-version</version>
+    </dependency>
+    <dependency>
+        <uri>dependency-uri</uri>
+    </dependency>
+    <gbean name="name" class="org.xdoclet.plugin.geronimo.config.TestGBean">
+        <attribute name="attr-name" type="attr-type">
+            AttrValue
+        </attribute>
+        <reference name="ref-name">
+            RefValue
+        </reference>
+        <references name="refs-name">
+            <pattern>refs-pattern</pattern>
+        </references>
+    </gbean>
+</configuration>

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.xml
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.xml
------------------------------------------------------------------------------
    svn:keywords = author date id rev

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/config/TestGBean.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.java
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.java?rev=327796&view=auto
==============================================================================
--- geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.java (added)
+++ geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.java Sun Oct 23 07:40:52 2005
@@ -0,0 +1,27 @@
+/**
+ *
+ * Copyright 2005 The Apache Software Foundation
+ *
+ *  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 org.xdoclet.plugin.geronimo.service;
+
+/**
+ * @geronimo.service
+ * @geronimo.service-dependency group-id="dependency-group-id" artifact-id="dependency-artifact-id" version="dependency-version"
+ * @geronimo.service-dependency uri="dependency-uri"
+ *
+ * @version $Rev$ $Date$
+ */
+public class TestService {
+}
\ No newline at end of file

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.java
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.java
------------------------------------------------------------------------------
    svn:keywords = author date id rev

Added: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.xml
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.xml?rev=327796&view=auto
==============================================================================
--- geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.xml (added)
+++ geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.xml Sun Oct 23 07:40:52 2005
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Copyright 2005 The Apache Software Foundation
+
+    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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<service xmlns="http://geronimo.apache.org/xml/ns/deployment">
+    <dependency>
+        <groupId>dependency-group-id</groupId>
+        <artifactId>dependency-artifact-id</artifactId>
+        <version>dependency-version</version>
+    </dependency>
+    <dependency>
+        <uri>dependency-uri</uri>
+    </dependency>
+</service>

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.xml
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.xml
------------------------------------------------------------------------------
    svn:keywords = author date id rev

Propchange: geronimo/devtools/trunk/sandbox/xdoclet2/src/test/org/apache/geronimo/devtools/xdoclet2/service/TestService.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml