#374 - Re-enable Eclipselink tests on JDK 11.

Upgrade to EclipseLink 2.7.2-RC1 which seems to have fixed https://bugs.eclipse.org/bugs/show_bug.cgi?id=535774.
This commit is contained in:
Oliver Gierke
2018-06-26 12:29:07 +02:00
parent b13fad2649
commit 8b00fa0500

View File

@@ -16,7 +16,7 @@
<name>Spring Data JPA - EclipseLink setup example</name>
<properties>
<eclipselink.version>2.7.1</eclipselink.version>
<eclipselink.version>2.7.2-RC1</eclipselink.version>
</properties>
<dependencies>
@@ -154,19 +154,6 @@
</build>
</profile>
<!-- Skip tests on JDK 11 as Eclipselink doesn't properly work on it -->
<!-- https://bugs.eclipse.org/bugs/show_bug.cgi?id=535774 -->
<profile>
<id>jdk11</id>
<activation>
<jdk>11</jdk>
</activation>
<properties>
<skipTests>true</skipTests>
</properties>
</profile>
</profiles>
</project>