Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.13 KB | None | 0 0
  1. diff --git a/pom.xml b/pom.xml
  2. index 89f49e7..5a9df6f 100644
  3. --- a/pom.xml
  4. +++ b/pom.xml
  5. @@ -46,11 +46,6 @@
  6.              <scope>test</scope>
  7.          </dependency>
  8.          <dependency>
  9. -            <groupId>org.apache.openejb</groupId>
  10. -            <artifactId>arquillian-openejb-transaction-provider</artifactId>
  11. -            <version>1.7.1</version>
  12. -        </dependency>
  13. -        <dependency>
  14.              <groupId>org.jboss.arquillian.protocol</groupId>
  15.              <artifactId>arquillian-protocol-servlet</artifactId>
  16.              <scope>test</scope>
  17. @@ -66,12 +61,6 @@
  18.              <artifactId>arquillian-persistence-dbunit</artifactId>
  19.              <version>1.0.0.Alpha7</version>
  20.              <scope>test</scope>
  21. -            <exclusions>
  22. -                <exclusion>
  23. -                    <artifactId>arquillian-transaction-jta</artifactId>
  24. -                    <groupId>org.jboss.arquillian.extension</groupId>
  25. -                </exclusion>
  26. -            </exclusions>
  27.          </dependency>
  28.          <dependency>
  29.              <groupId>org.jboss.shrinkwrap.resolver</groupId>
  30. @@ -94,4 +83,14 @@
  31.          </dependencies>
  32.      </dependencyManagement>
  33.  
  34. +    <build>
  35. +        <plugins>
  36. +            <plugin>
  37. +                <artifactId>maven-war-plugin</artifactId>
  38. +                <configuration>
  39. +                    <failOnMissingWebXml>false</failOnMissingWebXml>
  40. +                </configuration>
  41. +            </plugin>
  42. +        </plugins>
  43. +    </build>
  44.  </project>
  45. \ No newline at end of file
  46. diff --git a/src/test/resources/arquillian.xml b/src/test/resources/arquillian.xml
  47. index 425d5d1..ae1e848 100644
  48. --- a/src/test/resources/arquillian.xml
  49. +++ b/src/test/resources/arquillian.xml
  50. @@ -3,7 +3,4 @@
  51.      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  52.      xsi:schemaLocation="http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
  53.      <defaultProtocol type="Servlet 3.0" />
  54. -    <extension qualifier="persistence">
  55. -        <property name="defaultDataSource">java:comp/env/movieDatabase</property>
  56. -    </extension>
  57.  </arquillian>
  58. \ No newline at end of file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement