DATAJPA-286 - Added test infrastructure for plain JPA tests.

Added integration tests in org.springframework.data.jpa.infrastructure that will not be included in the normal test execution as they are purely means to quickly identify potential differences in persistence provider implementations.
This commit is contained in:
Oliver Gierke
2013-01-17 16:08:00 +01:00
parent bc6e2a7bc9
commit 28a565faec
4 changed files with 139 additions and 0 deletions

14
pom.xml
View File

@@ -307,6 +307,20 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Tests.java</include>
</includes>
<excludes>
<exclude>**/infrastructure/*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>