Skip to content

Commit 1a7f7d3

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.next, Eclipselink.next and EclipseLink 2.7.next).
1 parent a91a27a commit 1a7f7d3

File tree

2 files changed

+33
-3
lines changed

2 files changed

+33
-3
lines changed

.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,14 @@ 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-next
19+
- PROFILE=eclipselink-next
20+
- PROFILE=eclipselink-27-next
1521
- PROFILE=querydsl-next
1622

1723
sudo: false

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)