Author: jlaskowski
Date: Sat Dec 1 14:35:03 2007
New Revision: 600204
URL: http://svn.apache.org/viewvc?rev=600204&view=rev
Log:
Fix license headers
Modified:
openejb/trunk/openejb3/container/openejb-core/pom.xml
openejb/trunk/openejb3/container/openejb-jee/pom.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/JeeTest.java
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/jpa/JaxbTest.java
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/jpa/PersistenceXmlTest.java
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/oejb2/ConversionTest.java
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/oejb2/OpenejbJarTest.java
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/oejb3/OpenejbJarTest.java
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/wls/JaxbWlsTest.java
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/application-client-example.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/application-example.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/connector-example.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/daytrader-corrected.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/daytrader-original.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/ejb-jar-cmp-example1.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/ejb-jar-example1.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/ejb-jar-example2.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-converted.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-corrected.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-full.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-invalid.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/jpa-mapping-full.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/openejb-jar-2-full.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/openejb-jar-2-invalid.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/openejb-jar.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/persistence-example.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/tld-example.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/web-example.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/wls-ejb-jar.xml
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/wls-v81-ejb-jar.xml
openejb/trunk/openejb3/pom.xml
Modified: openejb/trunk/openejb3/container/openejb-core/pom.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-core/pom.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
--- openejb/trunk/openejb3/container/openejb-core/pom.xml (original)
+++ openejb/trunk/openejb3/container/openejb-core/pom.xml Sat Dec 1 14:35:03
2007
@@ -349,7 +349,6 @@
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
- <version>1.1</version>
<scope>test</scope>
</dependency>
</dependencies>
Modified: openejb/trunk/openejb3/container/openejb-jee/pom.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/pom.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
--- openejb/trunk/openejb3/container/openejb-jee/pom.xml (original)
+++ openejb/trunk/openejb3/container/openejb-jee/pom.xml Sat Dec 1 14:35:03
2007
@@ -15,7 +15,10 @@
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$ -->
+
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
@@ -36,7 +39,16 @@
<!--<exclude>org/openejb/jee2/EjbJarTest.*</exclude>-->
<!--</excludes>-->
<!--</configuration>-->
- <!--</plugin>-->
+ <!--</plugin>-->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>rat-maven-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>src/main/resources/META-INF/schema/xml.xsd</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
</plugins>
</build>
<dependencies>
@@ -60,5 +72,10 @@
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
+ <dependency>
+ <groupId>xmlunit</groupId>
+ <artifactId>xmlunit</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
</project>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/JeeTest.java
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/JeeTest.java?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/JeeTest.java
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/JeeTest.java
Sat Dec 1 14:35:03 2007
@@ -19,6 +19,8 @@
import junit.framework.AssertionFailedError;
import junit.framework.TestCase;
+
+import org.custommonkey.xmlunit.Diff;
import org.xml.sax.Attributes;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
@@ -99,7 +101,8 @@
String actual = new String(bytes);
try {
- assertEquals(expected, actual);
+ Diff myDiff = new Diff(expected, actual);
+ assertTrue("Files are similar " + myDiff, myDiff.similar());
} catch (AssertionFailedError e) {
writeToTmpFile(bytes, xmlFileName);
throw e;
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/jpa/JaxbTest.java
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/jpa/JaxbTest.java?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/jpa/JaxbTest.java
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/jpa/JaxbTest.java
Sat Dec 1 14:35:03 2007
@@ -22,6 +22,8 @@
import java.io.IOException;
import java.io.BufferedInputStream;
+import org.custommonkey.xmlunit.Diff;
+
/**
* @version $Rev$ $Date$
*/
@@ -41,13 +43,14 @@
String actual = JpaJaxbUtil.marshal(type, object);
+ String expected;
if (xmlFileName.equals(expectedFile)) {
- String sourceXml = readContent(getInputStream(xmlFileName));
- assertEquals(sourceXml, actual);
+ expected = readContent(getInputStream(xmlFileName));
} else {
- String expected = readContent(getInputStream(expectedFile));
- assertEquals(expected, actual);
+ expected = readContent(getInputStream(expectedFile));
}
+ Diff myDiff = new Diff(expected, actual);
+ assertTrue("Files are similar " + myDiff, myDiff.similar());
}
private <T>InputStream getInputStream(String xmlFileName) {
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/jpa/PersistenceXmlTest.java
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/jpa/PersistenceXmlTest.java?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/jpa/PersistenceXmlTest.java
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/jpa/PersistenceXmlTest.java
Sat Dec 1 14:35:03 2007
@@ -33,6 +33,7 @@
import java.net.URL;
import org.apache.openejb.jee.jpa.unit.Persistence;
+import org.custommonkey.xmlunit.Diff;
/**
* @version $Revision$ $Date$
@@ -88,9 +89,10 @@
ByteArrayOutputStream baos = new ByteArrayOutputStream();
marshaller.marshal(element, baos);
- java.lang.String actual = new java.lang.String(baos.toByteArray());
+ String actual = new String(baos.toByteArray());
- assertEquals(expected, actual);
+ Diff myDiff = new Diff(expected, actual);
+ assertTrue("Files are similar " + myDiff, myDiff.similar());
}
private java.lang.String readContent(InputStream in) throws IOException {
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/oejb2/ConversionTest.java
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/oejb2/ConversionTest.java?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/oejb2/ConversionTest.java
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/oejb2/ConversionTest.java
Sat Dec 1 14:35:03 2007
@@ -20,6 +20,9 @@
import javax.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
+
+import org.custommonkey.xmlunit.Diff;
+
import java.io.BufferedInputStream;
import java.io.IOException;
import java.io.InputStream;
@@ -58,7 +61,9 @@
JAXBElement root = new JAXBElement(new
QName("http://geronimo.apache.org/xml/ns/j2ee/ejb/openejb-2.0","ejb-jar"),
GeronimoEjbJarType.class, g2);
String result = JaxbOpenejbJar2.marshal(GeronimoEjbJarType.class,
root);
-
assertEquals(readContent(getInputStream("geronimo-openejb-converted.xml")),
result);
+ String expected =
readContent(getInputStream("geronimo-openejb-converted.xml"));
+ Diff myDiff = new Diff(expected, result);
+ assertTrue("Files are similar " + myDiff, myDiff.similar());
}
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/oejb2/OpenejbJarTest.java
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/oejb2/OpenejbJarTest.java?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/oejb2/OpenejbJarTest.java
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/oejb2/OpenejbJarTest.java
Sat Dec 1 14:35:03 2007
@@ -23,6 +23,8 @@
import java.io.InputStream;
import java.lang.String;
+import org.custommonkey.xmlunit.Diff;
+
/**
* @version $Revision: 471447 $ $Date: 2006-11-05 07:42:50 -0800 (Sun, 05 Nov
2006) $
*/
@@ -74,13 +76,14 @@
String actual = JaxbOpenejbJar2.marshal(type, object);
+ String expected;
if (xmlFileName.equals(expectedFile)) {
- String sourceXml = readContent(getInputStream(xmlFileName));
- assertEquals(sourceXml, actual);
+ expected = readContent(getInputStream(xmlFileName));
} else {
- String expected = readContent(getInputStream(expectedFile));
- assertEquals(expected, actual);
+ expected = readContent(getInputStream(expectedFile));
}
+ Diff myDiff = new Diff(expected, actual);
+ assertTrue("Files are similar " + myDiff, myDiff.similar());
}
private <T>InputStream getInputStream(String xmlFileName) {
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/oejb3/OpenejbJarTest.java
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/oejb3/OpenejbJarTest.java?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/oejb3/OpenejbJarTest.java
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/oejb3/OpenejbJarTest.java
Sat Dec 1 14:35:03 2007
@@ -25,6 +25,8 @@
import javax.xml.bind.ValidationEventHandler;
import javax.xml.bind.ValidationEvent;
+import org.custommonkey.xmlunit.Diff;
+
import java.io.InputStream;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
@@ -46,8 +48,7 @@
unmarshaller.setEventHandler(new TestValidationEventHandler());
Object object = unmarshaller.unmarshal(new
ByteArrayInputStream(expected.getBytes()));
- OpenejbJar ejbJar = (OpenejbJar) object;
- System.out.println("unmarshalled");
+ assertTrue(object instanceof OpenejbJar);
Marshaller marshaller = ctx.createMarshaller();
marshaller.setProperty("jaxb.formatted.output", true);
@@ -55,9 +56,10 @@
ByteArrayOutputStream baos = new ByteArrayOutputStream();
marshaller.marshal(object, baos);
- java.lang.String actual = new java.lang.String(baos.toByteArray());
+ String actual = new String(baos.toByteArray());
- assertEquals(expected, actual);
+ Diff myDiff = new Diff(expected, actual);
+ assertTrue("Files are similar " + myDiff, myDiff.similar());
}
private java.lang.String readContent(InputStream in) throws IOException {
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/wls/JaxbWlsTest.java
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/wls/JaxbWlsTest.java?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/wls/JaxbWlsTest.java
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/java/org/apache/openejb/jee/wls/JaxbWlsTest.java
Sat Dec 1 14:35:03 2007
@@ -18,16 +18,12 @@
import junit.framework.TestCase;
-import javax.xml.bind.JAXBContext;
-import javax.xml.bind.Unmarshaller;
-import javax.xml.bind.Marshaller;
-import javax.xml.bind.ValidationEventHandler;
-import javax.xml.bind.ValidationEvent;
import javax.xml.bind.JAXBElement;
+import org.custommonkey.xmlunit.Diff;
+
import java.io.InputStream;
import java.io.ByteArrayInputStream;
-import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.BufferedInputStream;
@@ -53,11 +49,12 @@
JAXBElement element = (JAXBElement) object;
- WeblogicEjbJar ejbJar = (WeblogicEjbJar) element.getValue();
+ assertTrue(element.getValue() instanceof WeblogicEjbJar);
String actual = JaxbWls.marshal(WeblogicEjbJar.class, element);
- assertEquals(expected, actual);
+ Diff myDiff = new Diff(expected, actual);
+ assertTrue("Files are similar " + myDiff, myDiff.similar());
}
private String readContent(InputStream in) throws IOException {
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/application-client-example.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/application-client-example.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/application-client-example.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/application-client-example.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<application-client xmlns="http://java.sun.com/xml/ns/javaee" version="3.0"
metadata-complete="true">
<description>String</description>
<display-name>token</display-name>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/application-example.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/application-example.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/application-example.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/application-example.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<application xmlns="http://java.sun.com/xml/ns/javaee" version="3.0">
<description>String</description>
<display-name>token</display-name>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/connector-example.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/connector-example.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/connector-example.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/connector-example.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<connector xmlns="http://java.sun.com/xml/ns/javaee" version="1.5" id="ID001">
<description xml:lang="">description0</description>
<display-name xml:lang="en-US">display-name0</display-name>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/daytrader-corrected.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/daytrader-corrected.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/daytrader-corrected.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/daytrader-corrected.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<ns3:openejb-jar xmlns="http://geronimo.apache.org/xml/ns/deployment-1.2"
xmlns:ns2="http://geronimo.apache.org/xml/ns/naming-1.2"
xmlns:ns3="http://openejb.apache.org/xml/ns/openejb-jar-2.2"
xmlns:ns4="http://openejb.apache.org/xml/ns/pkgen-2.1"
xmlns:ns5="http://geronimo.apache.org/xml/ns/j2ee/application-1.2"
xmlns:ns6="http://geronimo.apache.org/xml/ns/security-2.0"
xmlns:ns7="http://java.sun.com/xml/ns/persistence"
xmlns:ns8="http://geronimo.apache.org/xml/ns/j2ee/ejb/openejb-2.0">
<ns2:cmp-connection-factory>
<ns2:resource-link>jdbc/TradeDataSource</ns2:resource-link>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/daytrader-original.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/daytrader-original.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/daytrader-original.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/daytrader-original.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<openejb-jar xmlns="http://www.openejb.org/xml/ns/openejb-jar-2.1">
<cmp-connection-factory>
<resource-link>jdbc/TradeDataSource</resource-link>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/ejb-jar-cmp-example1.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/ejb-jar-cmp-example1.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/ejb-jar-cmp-example1.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/ejb-jar-cmp-example1.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<ejb-jar xmlns="http://java.sun.com/xml/ns/javaee" version="3.0"
metadata-complete="true">
<description>This ejb-jar file contains assembled enterprise beans that
are part of employee self-service application.</description>
<enterprise-beans>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/ejb-jar-example1.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/ejb-jar-example1.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/ejb-jar-example1.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/ejb-jar-example1.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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$ -->
+
<ejb-jar xmlns="http://java.sun.com/xml/ns/javaee" version="3.0"
metadata-complete="true">
<description>String</description>
<display-name>token</display-name>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/ejb-jar-example2.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/ejb-jar-example2.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/ejb-jar-example2.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/ejb-jar-example2.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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$ -->
+
<ejb-jar xmlns="http://java.sun.com/xml/ns/javaee" version="3.0"
metadata-complete="true">
<description>String</description>
<description>String</description>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-converted.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-converted.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-converted.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-converted.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<ns4:ejb-jar xmlns="http://geronimo.apache.org/xml/ns/deployment-1.2"
xmlns:ns2="http://geronimo.apache.org/xml/ns/naming-1.2"
xmlns:ns3="http://openejb.apache.org/xml/ns/openejb-jar-2.2"
xmlns:ns4="http://geronimo.apache.org/xml/ns/j2ee/ejb/openejb-2.0"
xmlns:ns5="http://geronimo.apache.org/xml/ns/j2ee/application-1.2"
xmlns:ns6="http://geronimo.apache.org/xml/ns/security-2.0"
xmlns:ns7="http://java.sun.com/xml/ns/persistence"
xmlns:ns8="http://openejb.apache.org/xml/ns/pkgen-2.1">
<environment>
<moduleId>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-corrected.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-corrected.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-corrected.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-corrected.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<ns4:ejb-jar xmlns="http://geronimo.apache.org/xml/ns/deployment-1.2"
xmlns:ns2="http://geronimo.apache.org/xml/ns/naming-1.2"
xmlns:ns3="http://openejb.apache.org/xml/ns/openejb-jar-2.2"
xmlns:ns4="http://geronimo.apache.org/xml/ns/j2ee/ejb/openejb-2.0"
xmlns:ns5="http://geronimo.apache.org/xml/ns/j2ee/application-1.2"
xmlns:ns6="http://geronimo.apache.org/xml/ns/security-2.0"
xmlns:ns7="http://java.sun.com/xml/ns/persistence"
xmlns:ns8="http://openejb.apache.org/xml/ns/pkgen-2.1">
<environment>
<moduleId>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-full.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-full.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-full.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-full.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<ns4:ejb-jar xmlns="http://geronimo.apache.org/xml/ns/deployment-1.2"
xmlns:ns2="http://geronimo.apache.org/xml/ns/naming-1.2"
xmlns:ns3="http://openejb.apache.org/xml/ns/openejb-jar-2.2"
xmlns:ns4="http://geronimo.apache.org/xml/ns/j2ee/ejb/openejb-2.0"
xmlns:ns5="http://geronimo.apache.org/xml/ns/j2ee/application-1.2"
xmlns:ns6="http://geronimo.apache.org/xml/ns/security-2.0"
xmlns:ns7="http://java.sun.com/xml/ns/persistence"
xmlns:ns8="http://openejb.apache.org/xml/ns/pkgen-2.1">
<environment>
<moduleId>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-invalid.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-invalid.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-invalid.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/geronimo-openejb-invalid.xml
Sat Dec 1 14:35:03 2007
@@ -1,25 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements. See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You 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.
--->
-
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<ejb-jar xmlns="http://geronimo.apache.org/xml/ns/j2ee/ejb/openejb-2.0"
- xmlns:n="http://geronimo.apache.org/xml/ns/naming-1.2"
->
+ xmlns:n="http://geronimo.apache.org/xml/ns/naming-1.2">
<environment>
<moduleId>
<groupId>itests</groupId>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/jpa-mapping-full.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/jpa-mapping-full.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/jpa-mapping-full.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/jpa-mapping-full.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<entity-mappings xmlns="http://java.sun.com/xml/ns/persistence/orm"
version="1.0">
<description>String</description>
<persistence-unit-metadata>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/openejb-jar-2-full.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/openejb-jar-2-full.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/openejb-jar-2-full.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/openejb-jar-2-full.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<ns3:openejb-jar xmlns="http://geronimo.apache.org/xml/ns/deployment-1.2"
xmlns:ns2="http://geronimo.apache.org/xml/ns/naming-1.2"
xmlns:ns3="http://openejb.apache.org/xml/ns/openejb-jar-2.2"
xmlns:ns4="http://openejb.apache.org/xml/ns/pkgen-2.1"
xmlns:ns5="http://geronimo.apache.org/xml/ns/j2ee/application-1.2"
xmlns:ns6="http://geronimo.apache.org/xml/ns/security-2.0"
xmlns:ns7="http://java.sun.com/xml/ns/persistence"
xmlns:ns8="http://geronimo.apache.org/xml/ns/j2ee/ejb/openejb-2.0">
<environment>
<moduleId>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/openejb-jar-2-invalid.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/openejb-jar-2-invalid.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/openejb-jar-2-invalid.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/openejb-jar-2-invalid.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<openejb-jar xmlns="http://openejb.apache.org/xml/ns/openejb-jar-2.2"
xmlns:pkgen="http://openejb.apache.org/xml/ns/pkgen-2.1"
xmlns:naming="http://geronimo.apache.org/xml/ns/naming-1.2"
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/openejb-jar.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/openejb-jar.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/openejb-jar.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/openejb-jar.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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$ -->
+
<openejb-jar xmlns="http://www.openejb.org/openejb-jar/1.1">
<ejb-deployment ejb-name="BasicCmpBean"
deployment-id="client/tests/entity/cmp/BasicCmpHome" container-id="Default CMP
Container">
<resource-link res-ref-name="jdbc/basic/entityDatabase"
res-id="Default JDBC Database"/>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/persistence-example.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/persistence-example.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/persistence-example.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/persistence-example.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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$ -->
+
<persistence xmlns="http://java.sun.com/xml/ns/persistence" version="1.0">
<persistence-unit transaction-type="JTA" name="foo">
<description>description</description>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/tld-example.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/tld-example.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/tld-example.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/tld-example.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<taglib xmlns="http://java.sun.com/xml/ns/javaee" version="2.5" id="ID001">
<description xml:lang="">description0</description>
<display-name xml:lang="en-US">display-name0</display-name>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/web-example.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/web-example.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/web-example.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/web-example.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<web-app xmlns="http://java.sun.com/xml/ns/javaee" version="2.5"
metadata-complete="false" id="ID001">
<description xml:lang="en-US">description117</description>
<description xml:lang="">description121</description>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/wls-ejb-jar.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/wls-ejb-jar.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/wls-ejb-jar.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/wls-ejb-jar.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<weblogic-ejb-jar xmlns="http://www.bea.com/ns/weblogic/90">
<description>description0</description>
<weblogic-enterprise-bean>
Modified:
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/wls-v81-ejb-jar.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/src/test/resources/wls-v81-ejb-jar.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/wls-v81-ejb-jar.xml
(original)
+++
openejb/trunk/openejb3/container/openejb-jee/src/test/resources/wls-v81-ejb-jar.xml
Sat Dec 1 14:35:03 2007
@@ -1,4 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: 600180 $ $Date: 2007-12-01 19:52:39 +0100 (Sat, 01 Dec 2007) $ -->
+
<weblogic-ejb-jar xmlns="http://www.bea.com/ns/weblogic/90">
<description>description0</description>
<weblogic-enterprise-bean>
Modified: openejb/trunk/openejb3/pom.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/pom.xml?rev=600204&r1=600203&r2=600204&view=diff
==============================================================================
--- openejb/trunk/openejb3/pom.xml (original)
+++ openejb/trunk/openejb3/pom.xml Sat Dec 1 14:35:03 2007
@@ -859,7 +859,12 @@
</exclusion>
</exclusions>
</dependency>
-
+ <dependency>
+ <groupId>xmlunit</groupId>
+ <artifactId>xmlunit</artifactId>
+ <version>1.1</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
</dependencyManagement>
<distributionManagement>