Author: brianf Date: Fri Mar 21 11:02:36 2008 New Revision: 639740 URL: http://svn.apache.org/viewvc?rev=639740&view=rev Log: MNG-3426: exclude missing JTA
Modified: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/MNG-3426/pom.xml Modified: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/MNG-3426/pom.xml URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/MNG-3426/pom.xml?rev=639740&r1=639739&r2=639740&view=diff ============================================================================== --- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/MNG-3426/pom.xml (original) +++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/MNG-3426/pom.xml Fri Mar 21 11:02:36 2008 @@ -27,6 +27,13 @@ <groupId>org.codehaus.castor</groupId> <artifactId>castor-codegen</artifactId> <version>1.1.1</version> + <!--JTA isn't in the repo and isn't needed for this test--> + <exclusions> + <exclusion> + <groupId>javax.transaction</groupId> + <artifactId>jta</artifactId> + </exclusion> + </exclusions> </dependency> </dependencies> </plugin>