OPENJPA-1712 revert to original test-java5 profile setup

git-svn-id: https://svn.apache.org/repos/asf/openjpa/branches/2.0.x@986829 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Donald Woods 2010-08-18 18:14:19 +00:00
parent 820a7bf245
commit 41c67a0354
2 changed files with 21 additions and 10 deletions

View File

@ -81,6 +81,27 @@
</dependencies>
</profile>
<!-- Test profile for testing with Apache BVAL and Java SE 5 -->
<!-- Note: You have to set -Ptest-java5,bval together -->
<profile>
<id>test-java5</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.1.3</version>
</dependency>
</dependencies>
</profile>
<!-- Profile for testing with Hibernate Bean Validation RI -->
<profile>
<id>hibernate</id>

10
pom.xml
View File

@ -308,16 +308,6 @@
<properties>
<java5.home>"java5.home - Must be user supplied"</java5.home>
</properties>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>