From 04bfc802dbb6809cccb6d0d1cbd7aa85938a0a0a Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Thu, 2 Aug 2012 18:30:08 +0200 Subject: [PATCH] Use consistent HSQLDB version in Gradle build --- build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index f0e60c21c2..2ea0800567 100644 --- a/build.gradle +++ b/build.gradle @@ -18,6 +18,7 @@ configure(allprojects) { targetCompatibility=1.5 ext.aspectjVersion = '1.6.12' + ext.hsqldbVersion='1.8.0.10' ext.junitVersion = '4.10' [compileJava, compileTestJava]*.options*.compilerArgs = ['-Xlint:none'] @@ -301,7 +302,7 @@ project('spring-jdbc') { compile(project(":spring-context"), optional) // for JndiDataSourceLookup compile project(":spring-tx") compile("c3p0:c3p0:0.9.1.2", optional) - compile("hsqldb:hsqldb:1.8.0.7", optional) + compile("hsqldb:hsqldb:${hsqldbVersion}", optional) compile("com.h2database:h2:1.0.71", optional) compile("org.apache.derby:derby:10.5.3.0_1", optional) compile("org.apache.derby:derbyclient:10.5.3.0_1", optional) @@ -330,7 +331,7 @@ project('spring-context-support') { compile("commons-digester:commons-digester:1.8.1", optional) compile("commons-beanutils:commons-beanutils:1.8.0", optional) compile("com.lowagie:itext:2.0.8", optional) - testCompile "hsqldb:hsqldb:1.8.0.10" + testCompile "hsqldb:hsqldb:${hsqldbVersion}" testCompile("org.apache.poi:poi:3.0.2-FINAL") { exclude group: 'log4j', module: 'log4j' }