Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 617d1d2

Browse files
committed
Update h2 1.4.200
1 parent 2ae7a30 commit 617d1d2

File tree

7 files changed

+7
-5
lines changed

7 files changed

+7
-5
lines changed

boot-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ dependencies {
1313

1414
testRuntimeOnly "org.apache.tomcat:tomcat-jdbc:$tomcatVersion"
1515
testRuntimeOnly "org.apache.tomcat.embed:tomcat-embed-logging-log4j:8.5.2"
16-
testRuntimeOnly "com.h2database:h2:1.3.173"
16+
testRuntimeOnly "com.h2database:h2:$h2Version"
1717
}

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ subprojects { project ->
6666
if(project.name.startsWith("examples-")) {
6767
apply plugin: "groovy"
6868

69+
ext['h2.version'] = h2Version
6970
if(project.name.startsWith("examples-grails")) {
7071
apply plugin:"org.grails.grails-web"
7172
apply plugin:"org.grails.grails-gsp"

examples/spring-boot-hibernate5/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies {
3232
implementation "org.hibernate:hibernate-core:$hibernate5Version"
3333
implementation "org.hibernate:hibernate-ehcache:$hibernate5Version"
3434

35-
runtimeOnly "com.h2database:h2:1.4.192"
35+
runtimeOnly "com.h2database:h2:$h2Version"
3636
runtimeOnly "org.apache.tomcat:tomcat-jdbc:$tomcatVersion"
3737
runtimeOnly "org.apache.tomcat.embed:tomcat-embed-logging-log4j:8.5.2"
3838
runtimeOnly "org.slf4j:slf4j-api:$slf4jVersion"

examples/standalone-hibernate5/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin:"groovy"
44

55
dependencies {
66
implementation project(":grails-datastore-gorm-hibernate5")
7-
runtimeOnly "com.h2database:h2:1.4.192"
7+
runtimeOnly "com.h2database:h2:$h2Version"
88
runtimeOnly "org.apache.tomcat:tomcat-jdbc:$tomcatVersion"
99
runtimeOnly "org.apache.tomcat.embed:tomcat-embed-logging-log4j:8.5.2"
1010
runtimeOnly "org.slf4j:slf4j-api:$slf4jVersion"

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ grails3Version=3.3.8
55
groovyVersion=3.0.5
66
springBootVersion=2.2.8.RELEASE
77
springVersion=5.2.7.RELEASE
8+
h2Version=1.4.200
89
hibernate5Version=5.4.10.Final
910
hibernateValidatorVersion=6.0.18.Final
1011
tomcatVersion=8.5.0

grails-datastore-gorm-hibernate5/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ dependencies {
4444
testImplementation "org.codehaus.groovy:groovy-sql:$groovyVersion"
4545
testImplementation "org.codehaus.groovy:groovy-json:$groovyVersion"
4646
testImplementation "org.grails:grails-datastore-gorm-tck:$gormVersion"
47-
testImplementation "com.h2database:h2:1.3.164"
47+
testImplementation "com.h2database:h2:$h2Version"
4848

4949
testImplementation "net.sf.ehcache:ehcache-core:2.6.11"
5050
testImplementation "org.hibernate:hibernate-ehcache:$hibernate5Version"

grails-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies {
4545
}
4646
testRuntimeOnly "org.yaml:snakeyaml:$snakeyamlVersion"
4747
testImplementation "org.grails:grails-gorm-testing-support:$testingSupportVersion"
48-
testRuntimeOnly "com.h2database:h2:1.4.192"
48+
testRuntimeOnly "com.h2database:h2:$h2Version"
4949
testRuntimeOnly "org.apache.tomcat:tomcat-jdbc:$tomcatVersion"
5050
testRuntimeOnly "org.apache.tomcat.embed:tomcat-embed-logging-log4j:8.5.2"
5151
testRuntimeOnly "org.springframework:spring-aop:$springVersion"

0 commit comments

Comments
 (0)