Skip to content

Commit 04bfc80

Browse files
committed
Use consistent HSQLDB version in Gradle build
1 parent d217855 commit 04bfc80

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.gradle

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ configure(allprojects) {
1818
targetCompatibility=1.5
1919

2020
ext.aspectjVersion = '1.6.12'
21+
ext.hsqldbVersion='1.8.0.10'
2122
ext.junitVersion = '4.10'
2223

2324
[compileJava, compileTestJava]*.options*.compilerArgs = ['-Xlint:none']
@@ -301,7 +302,7 @@ project('spring-jdbc') {
301302
compile(project(":spring-context"), optional) // for JndiDataSourceLookup
302303
compile project(":spring-tx")
303304
compile("c3p0:c3p0:0.9.1.2", optional)
304-
compile("hsqldb:hsqldb:1.8.0.7", optional)
305+
compile("hsqldb:hsqldb:${hsqldbVersion}", optional)
305306
compile("com.h2database:h2:1.0.71", optional)
306307
compile("org.apache.derby:derby:10.5.3.0_1", optional)
307308
compile("org.apache.derby:derbyclient:10.5.3.0_1", optional)
@@ -330,7 +331,7 @@ project('spring-context-support') {
330331
compile("commons-digester:commons-digester:1.8.1", optional)
331332
compile("commons-beanutils:commons-beanutils:1.8.0", optional)
332333
compile("com.lowagie:itext:2.0.8", optional)
333-
testCompile "hsqldb:hsqldb:1.8.0.10"
334+
testCompile "hsqldb:hsqldb:${hsqldbVersion}"
334335
testCompile("org.apache.poi:poi:3.0.2-FINAL") {
335336
exclude group: 'log4j', module: 'log4j'
336337
}

0 commit comments

Comments
 (0)