Skip to content

Commit 2509955

Browse files
committed
DATAJPA-867 - Upgraded to latest persistence provider dependencies.
Upgraded to OpenJPA 2.4.1 and Hibernate 4.2 build profile to 4.2.1. Added more snapshot profiles and register them for execution in the Travis build (Hibernate 4.2.next, 4.3.next, 5.next, 5.1, 5.1.next, Eclipselink.next and EclipseLink 2.7.next). Disabled Bundlor plugin for Travis build to make sure the OSGi-incompatible Eclipselink snapshot version numbers don't break the build.
1 parent a91a27a commit 2509955

File tree

2 files changed

+35
-4
lines changed

2 files changed

+35
-4
lines changed

.travis.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,15 @@ env:
1010
- PROFILE=spring42-next
1111
- PROFILE=hibernate-41
1212
- PROFILE=hibernate-42
13+
- PROFILE=hibernate-42-next
1314
- PROFILE=hibernate-43
15+
- PROFILE=hibernate-43-next
1416
- PROFILE=hibernate-5
17+
- PROFILE=hibernate-5-next
18+
- PROFILE=hibernate-51
19+
- PROFILE=hibernate-51-next
20+
- PROFILE=eclipselink-next
21+
- PROFILE=eclipselink-27-next
1522
- PROFILE=querydsl-next
1623

1724
sudo: false
@@ -22,7 +29,7 @@ cache:
2229

2330
install: true
2431

25-
script: "mvn clean dependency:list test -P${PROFILE} -Dsort"
32+
script: "mvn clean dependency:list test -P${PROFILE} -Dsort -Dbundlor.enabled=false"
2633
notifications:
2734
slack:
2835
secure: VYoJ2D6BM3etTNHJArJ47rVvj49PRZ+eIg12itOzlQSCnsPPob9X2OJVZ8Umatfx6TyP+rOrJAz+pqA1geumEzx+dIWTtBf6og703XKS9feLpM7sa1DupdstlGu506Wwevmb7nUq/Ct0ziCZykD3Cqu9tOhnai5wWlULBYDQ4WE=

pom.xml

+27-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<hibernate>3.6.10.Final</hibernate>
2626
<hsqldb1>1.8.0.10</hsqldb1>
2727
<jpa>2.0.0</jpa>
28-
<openjpa>2.4.0</openjpa>
28+
<openjpa>2.4.1</openjpa>
2929
<springdata.commons>1.12.0.BUILD-SNAPSHOT</springdata.commons>
3030

3131
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
@@ -42,15 +42,39 @@
4242
<profile>
4343
<id>hibernate-42</id>
4444
<properties>
45-
<hibernate>4.2.20.Final</hibernate>
45+
<hibernate>4.2.21.Final</hibernate>
4646
</properties>
4747
</profile>
48+
<profile>
49+
<id>hibernate-42-next</id>
50+
<properties>
51+
<hibernate>4.2.22-SNAPSHOT</hibernate>
52+
</properties>
53+
<repositories>
54+
<repository>
55+
<id>jboss</id>
56+
<url>https://repository.jboss.org/nexus/content/repositories/public</url>
57+
</repository>
58+
</repositories>
59+
</profile>
4860
<profile>
4961
<id>hibernate-43</id>
5062
<properties>
5163
<hibernate>4.3.11.Final</hibernate>
5264
</properties>
5365
</profile>
66+
<profile>
67+
<id>hibernate-43-next</id>
68+
<properties>
69+
<hibernate>4.3.12-SNAPSHOT</hibernate>
70+
</properties>
71+
<repositories>
72+
<repository>
73+
<id>jboss</id>
74+
<url>https://repository.jboss.org/nexus/content/repositories/public</url>
75+
</repository>
76+
</repositories>
77+
</profile>
5478
<profile>
5579
<id>hibernate-5</id>
5680
<properties>
@@ -90,7 +114,7 @@
90114
<profile>
91115
<id>eclipselink-next</id>
92116
<properties>
93-
<eclipselink>2.6.2-SNAPSHOT</eclipselink>
117+
<eclipselink>2.6.3-SNAPSHOT</eclipselink>
94118
</properties>
95119
<repositories>
96120
<repository>

0 commit comments

Comments
 (0)