Skip to content

Commit c4ebeb6

Browse files
committed
Set Hibernate version as property in pom
1 parent 69c0df5 commit c4ebeb6

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

Diff for: pom.xml

+9-7
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
<http.port>9080</http.port>
1919
<https.port>9443</https.port>
2020
<liberty.var.app.context.root>/</liberty.var.app.context.root>
21+
22+
<hibernate.version>7.0.0.Beta1</hibernate.version>
2123
</properties>
2224

2325
<dependencies>
@@ -38,7 +40,7 @@
3840
<dependency>
3941
<groupId>org.hibernate.orm</groupId>
4042
<artifactId>hibernate-core</artifactId>
41-
<version>7.0.0.Beta3</version>
43+
<version>${hibernate.version}</version>
4244
<exclusions>
4345
<exclusion>
4446
<groupId>jakarta.activation</groupId>
@@ -61,7 +63,7 @@
6163
<dependency>
6264
<groupId>org.hibernate.orm</groupId>
6365
<artifactId>hibernate-processor</artifactId>
64-
<version>7.0.0.Beta3</version>
66+
<version>${hibernate.version}</version>
6567
<exclusions>
6668
<exclusion>
6769
<groupId>jakarta.activation</groupId>
@@ -84,7 +86,7 @@
8486
<dependency>
8587
<groupId>org.hibernate.orm</groupId>
8688
<artifactId>hibernate-community-dialects</artifactId>
87-
<version>7.0.0.Beta3</version>
89+
<version>${hibernate.version}</version>
8890
</dependency>
8991
</dependencies>
9092

@@ -148,17 +150,17 @@
148150
<dependency>
149151
<groupId>org.hibernate.orm</groupId>
150152
<artifactId>hibernate-core</artifactId>
151-
<version>7.0.0.Beta1</version>
153+
<version>${hibernate.version}</version>
152154
</dependency>
153155
<dependency>
154156
<groupId>org.hibernate.orm</groupId>
155157
<artifactId>hibernate-processor</artifactId>
156-
<version>7.0.0.Beta1</version>
158+
<version>${hibernate.version}</version>
157159
</dependency>
158160
<dependency>
159161
<groupId>org.hibernate.orm</groupId>
160162
<artifactId>hibernate-community-dialects</artifactId>
161-
<version>7.0.0.Beta1</version>
163+
<version>${hibernate.version}</version>
162164
</dependency>
163165
</dependencyGroup>
164166
</copyDependencies>
@@ -173,7 +175,7 @@
173175
<annotationProcessorPath>
174176
<groupId>org.hibernate.orm</groupId>
175177
<artifactId>hibernate-processor</artifactId>
176-
<version>7.0.0.Beta3</version>
178+
<version>${hibernate.version}</version>
177179
</annotationProcessorPath>
178180
</annotationProcessorPaths>
179181
</configuration>

0 commit comments

Comments
 (0)