DATAJPA-1021 - Make sure build profiles for Spring 5 skip OpenJPA tests.
Also disabled obsolete Spring 4.3 build execution as we're on Spring 4.3 anyway.
This commit is contained in:
@@ -6,7 +6,6 @@ jdk:
|
||||
env:
|
||||
matrix:
|
||||
- PROFILE=ci
|
||||
- PROFILE=spring43
|
||||
- PROFILE=spring43-next
|
||||
- PROFILE=spring5,hibernate-43
|
||||
- PROFILE=spring5-next,hibernate-43
|
||||
|
||||
14
pom.xml
14
pom.xml
@@ -30,10 +30,23 @@
|
||||
<springdata.commons>1.13.0.BUILD-SNAPSHOT</springdata.commons>
|
||||
|
||||
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
|
||||
<skip-openjpa>false</skip-openjpa>
|
||||
|
||||
</properties>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>spring5</id>
|
||||
<properties>
|
||||
<skip-openjpa>true</skip-openjpa>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>spring5-next</id>
|
||||
<properties>
|
||||
<skip-openjpa>true</skip-openjpa>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>hibernate-41</id>
|
||||
<properties>
|
||||
@@ -457,6 +470,7 @@
|
||||
</goals>
|
||||
<phase>test</phase>
|
||||
<configuration>
|
||||
<skip>${skip-openjpa}</skip>
|
||||
<includes>
|
||||
<include>**/OpenJpa*Tests.java</include>
|
||||
</includes>
|
||||
|
||||
Reference in New Issue
Block a user