Skip to content

Commit

Permalink
Update db dependencies used for tests: h2 and hsqldb
Browse files Browse the repository at this point in the history
  • Loading branch information
mgoellnitz committed Mar 31, 2016
1 parent f7f1a96 commit bfc0761
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class TangramVersions {
String servlet_api = 'javax.servlet:javax.servlet-api:3.1.0'
String jsp_api = 'javax.servlet.jsp:jsp-api:2.2'
String groovy = '2.4.6'
String asm = '4.0'
String asm = '5.1'
String velocity = '1.7'
String slf4j = '1.7.20'
String log4j = '1.2.17'
Expand All @@ -47,7 +47,9 @@ public class TangramVersions {

// For testing purposes
String junit = '4.12'
String testng = '6.3.1' // Gradle 2.10 has 6.3.1 - tests fail with other versions - latest is 6.9.11
String testng = '6.9.11' // Gradle 2.12 has 6.3.1 - tests using e.g. testng listeners fail with other versions
String hsqldb = '1.8.1.1'
String h2db = '1.4.191'

// The dependency injection options
String dinistiq = '0.5'
Expand Down
2 changes: 1 addition & 1 deletion ebean/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies {
testCompile project (':tangram-core').sourceSets.test.output
testCompile "org.springframework:spring-core:$versions.springframework"
testCompile "org.springframework:spring-test:$versions.springframework"
testCompile "com.h2database:h2:1.4.191"
testCompile "com.h2database:h2:$versions.h2db"
}

compileTestJava.doLast {
Expand Down
2 changes: 1 addition & 1 deletion jpa/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies {
testCompile project (':tangram-core').sourceSets.test.output
testCompile "org.springframework:spring-core:$versions.springframework"
testCompile "org.springframework:spring-test:$versions.springframework"
testCompile "hsqldb:hsqldb:1.8.0.10"
testCompile "hsqldb:hsqldb:$versions.hsqldb"
}

// For Java EE environments
Expand Down
2 changes: 1 addition & 1 deletion nucleus/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies {
testCompile project (':tangram-core').sourceSets.test.output
testCompile "org.datanucleus:datanucleus-rdbms:$versions.datanucleus"
testCompile "$versions.jdo_api"
testCompile "hsqldb:hsqldb:1.8.0.10"
testCompile "hsqldb:hsqldb:$versions.hsqldb"
}

compileTestJava.doLast {
Expand Down

0 comments on commit bfc0761

Please sign in to comment.