# HG changeset patch # User Torsten Irländer # Date 1366274715 -7200 # Node ID 177351d4cca931033b0ae64390ad247b8704a19f # Parent 83b0822c2aab334ede7acb2526962478a909e5f5 Added files from jboss-javaee6-webapp-blank-archetype diff -r 83b0822c2aab -r 177351d4cca9 pom.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pom.xml Thu Apr 18 10:45:15 2013 +0200 @@ -0,0 +1,279 @@ + + + 4.0.0 + + de.intevation + lada + 1.0-SNAPSHOT + war + Java EE 6 webapp project + A starter Java EE 6 webapp project for use on JBoss AS 7.1 / EAP 6, generated from the jboss-javaee6-webapp archetype + + + + + UTF-8 + + 1.0.0.Final + + + + + + + + + + org.jboss.bom + jboss-javaee-6.0-with-tools + ${jboss.bom.version} + pom + import + + + org.jboss.bom + jboss-javaee-6.0-with-hibernate + ${jboss.bom.version} + pom + import + + + + + + + + + + + javax.enterprise + cdi-api + provided + + + + + org.jboss.spec.javax.annotation + jboss-annotations-api_1.1_spec + provided + + + + + org.jboss.spec.javax.ws.rs + jboss-jaxrs-api_1.1_spec + provided + + + + + org.hibernate.javax.persistence + hibernate-jpa-2.0-api + provided + + + + + org.jboss.spec.javax.ejb + jboss-ejb-api_3.1_spec + provided + + + + + + + org.hibernate + hibernate-validator + provided + + + org.slf4j + slf4j-api + + + + + + + org.jboss.spec.javax.faces + jboss-jsf-api_2.1_spec + provided + + + + + + + org.hibernate + hibernate-jpamodelgen + provided + + + + + org.hibernate + hibernate-validator-annotation-processor + provided + + + + + junit + junit + test + + + + + + org.jboss.arquillian.junit + arquillian-junit-container + test + + + + org.jboss.arquillian.protocol + arquillian-protocol-servlet + test + + + + + + + ${project.artifactId} + + + + maven-compiler-plugin + 2.3.1 + + 1.6 + 1.6 + + + + maven-war-plugin + 2.1.1 + + + false + + + + + + org.jboss.as.plugins + jboss-as-maven-plugin + 7.1.1.Final + + + + + + + + + default + + true + + + + + maven-surefire-plugin + 2.4.3 + + true + + + + + + + + + + + arq-jbossas-managed + + + org.jboss.as + jboss-as-arquillian-container-managed + test + + + + + + + + arq-jbossas-remote + + + org.jboss.as + jboss-as-arquillian-container-remote + test + + + + + + + + + + openshift + + + + maven-war-plugin + 2.1.1 + + deployments + ROOT + + + + + + + + diff -r 83b0822c2aab -r 177351d4cca9 src/main/resources/META-INF/persistence.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main/resources/META-INF/persistence.xml Thu Apr 18 10:45:15 2013 +0200 @@ -0,0 +1,17 @@ + + + + + java:jboss/datasources/ladaDS + + + + + + + \ No newline at end of file diff -r 83b0822c2aab -r 177351d4cca9 src/main/webapp/WEB-INF/beans.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main/webapp/WEB-INF/beans.xml Thu Apr 18 10:45:15 2013 +0200 @@ -0,0 +1,9 @@ + + + + + diff -r 83b0822c2aab -r 177351d4cca9 src/main/webapp/WEB-INF/faces-config.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main/webapp/WEB-INF/faces-config.xml Thu Apr 18 10:45:15 2013 +0200 @@ -0,0 +1,14 @@ + + + + + + + + + diff -r 83b0822c2aab -r 177351d4cca9 src/main/webapp/WEB-INF/lada-ds.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main/webapp/WEB-INF/lada-ds.xml Thu Apr 18 10:45:15 2013 +0200 @@ -0,0 +1,21 @@ + + + + + + jdbc:h2:mem:lada;DB_CLOSE_DELAY=-1 + h2 + + sa + sa + + + + \ No newline at end of file diff -r 83b0822c2aab -r 177351d4cca9 src/test/resources/META-INF/test-persistence.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/test/resources/META-INF/test-persistence.xml Thu Apr 18 10:45:15 2013 +0200 @@ -0,0 +1,20 @@ + + + + + + java:jboss/datasources/ladaTestDS + + + + + + + \ No newline at end of file diff -r 83b0822c2aab -r 177351d4cca9 src/test/resources/arquillian.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/test/resources/arquillian.xml Thu Apr 18 10:45:15 2013 +0200 @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + /path/to/jboss/as + + + + \ No newline at end of file diff -r 83b0822c2aab -r 177351d4cca9 src/test/resources/test-ds.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/test/resources/test-ds.xml Thu Apr 18 10:45:15 2013 +0200 @@ -0,0 +1,21 @@ + + + + + + jdbc:h2:mem:lada-test;DB_CLOSE_DELAY=-1 + h2 + + sa + sa + + + + \ No newline at end of file