Author: sergeyb
Date: Fri Jun 22 09:56:00 2012
New Revision: 1352827
URL: http://svn.apache.org/viewvc?rev=1352827&view=rev
Log:
Excluding JPATypedQueryVisitorTest on 2.6.x for the moment given that it
appears JPA 2.0 providers (Hibernate, OpenJPA 2.2.0) are built with 1.6
Modified:
cxf/branches/2.6.x-fixes/rt/rs/extensions/search/pom.xml
Modified: cxf/branches/2.6.x-fixes/rt/rs/extensions/search/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/rt/rs/extensions/search/pom.xml?rev=1352827&r1=1352826&r2=1352827&view=diff
==============================================================================
--- cxf/branches/2.6.x-fixes/rt/rs/extensions/search/pom.xml (original)
+++ cxf/branches/2.6.x-fixes/rt/rs/extensions/search/pom.xml Fri Jun 22
09:56:00 2012
@@ -70,12 +70,21 @@
<dependency>
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
- <version>1.8.0.10</version>
+ <version>${hsqldb.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>**/JPATypedQueryVisitorTest.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
</plugins>
</build>
</project>