Skip to content

Commit

Permalink
JBIDE-27351: Set up a runtime plugin for the upcoming Hibernate 5.5.x…
Browse files Browse the repository at this point in the history
… releases - Update Hibernate Core dependency to version 5.5.2.Final

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  • Loading branch information
koentsje committed Jun 22, 2021
1 parent d3222e8 commit 0ea1aac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Bundle-ClassPath: .,
lib/commons-collections4-4.4.jar,
lib/istack-commons-runtime-3.0.11.jar,
lib/hibernate-commons-annotations-5.1.2.Final.jar,
lib/hibernate-core-5.5.0.Final.jar,
lib/hibernate-tools-5.5.0.Final.jar,
lib/hibernate-core-5.5.2.Final.jar,
lib/hibernate-tools-5.5.2.Final.jar,
lib/jandex-2.2.3.Final.jar,
lib/javax.persistence-api-2.2.jar,
lib/jaxb-api-2.3.1.jar,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<properties>
<classmate.version>1.3.4</classmate.version>
<commons-collections.version>4.4</commons-collections.version>
<hibernate.version>5.5.0.Final</hibernate.version>
<hibernate.version>5.5.2.Final</hibernate.version>
<hibernate-commons-annotations.version>5.1.2.Final</hibernate-commons-annotations.version>
<istack-commons-runtime.version>3.0.11</istack-commons-runtime.version>
<jandex.version>2.2.3.Final</jandex.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ public class VersionTest {

@Test
public void testToolsVersion() {
assertEquals("5.5.0.Final", org.hibernate.tool.Version.VERSION);
assertEquals("5.5.2.Final", org.hibernate.tool.Version.VERSION);
}

@Test
public void testCoreVersion() {
assertEquals("5.5.0.Final", org.hibernate.Version.getVersionString());
assertEquals("5.5.2.Final", org.hibernate.Version.getVersionString());
}


Expand Down

0 comments on commit 0ea1aac

Please sign in to comment.