|
6 | 6 | <modelVersion>4.0.0</modelVersion>
|
7 | 7 |
|
8 | 8 | <properties>
|
9 |
| - <maven.compiler.target>1.8</maven.compiler.target> |
10 |
| - <maven.compiler.source>1.8</maven.compiler.source> |
| 9 | + <maven.compiler.target>11</maven.compiler.target> |
| 10 | + <maven.compiler.source>11</maven.compiler.source> |
11 | 11 | </properties>
|
12 | 12 |
|
13 | 13 | <!--
|
14 | 14 | The parent pom defines common style checks and testing strategies for our samples.
|
15 |
| - Removing or replacing it should not affect the execution of the samples in anyway. |
| 15 | + Removing or replacing it should not affect the execution of the samples in any way. |
16 | 16 | -->
|
17 | 17 | <parent>
|
18 | 18 | <groupId>com.google.cloud.samples</groupId>
|
|
26 | 26 |
|
27 | 27 | <!-- [START spanner_hibernate_dependencies] -->
|
28 | 28 | <dependencies>
|
29 |
| - <!-- The Hibernate dialect for Spanner dependency --> |
30 |
| - <dependency> |
31 |
| - <groupId>com.google.cloud</groupId> |
32 |
| - <artifactId>google-cloud-spanner-hibernate-dialect</artifactId> |
33 |
| - <version>1.5.2</version> |
34 |
| - </dependency> |
35 |
| - |
36 | 29 | <!-- The Spanner JDBC driver dependency -->
|
37 | 30 | <dependency>
|
38 | 31 | <groupId>com.google.cloud</groupId>
|
39 | 32 | <artifactId>google-cloud-spanner-jdbc</artifactId>
|
40 |
| - <version>2.5.11</version> |
| 33 | + <version>2.7.4</version> |
41 | 34 | </dependency>
|
42 | 35 |
|
43 | 36 | <!-- Hibernate core dependency -->
|
44 | 37 | <dependency>
|
45 |
| - <groupId>org.hibernate</groupId> |
| 38 | + <groupId>org.hibernate.orm</groupId> |
46 | 39 | <artifactId>hibernate-core</artifactId>
|
47 |
| - <version>5.6.5.Final</version> |
| 40 | + <version>6.1.5.Final</version> |
48 | 41 | </dependency>
|
49 | 42 | </dependencies>
|
50 | 43 | <!-- [END spanner_hibernate_dependencies] -->
|
|
0 commit comments