Skip to content

Commit

Permalink
WELD-493 Added missing test resources
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakknutsen committed Jul 29, 2010
1 parent b3a3749 commit 054f927
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 0 deletions.
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
version="1.0">
<persistence-unit name="test">
<jta-data-source>java:/DefaultDS</jta-data-source>
</persistence-unit>
</persistence>
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<ejb-jar xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_1.xsd"
version="3.1">

</ejb-jar>
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>

<web-app version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

<display-name>Weld Core Tests - nonContextual</display-name>

<listener>
<listener-class>org.jboss.weld.tests.nonContextual.ServletContextListenerImpl</listener-class>
</listener>

</web-app>
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
version="1.0">
<persistence-unit name="test">
<jta-data-source>java:/DefaultDS</jta-data-source>
</persistence-unit>
</persistence>

0 comments on commit 054f927

Please sign in to comment.