Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
#57 fix integration tests for new RC3
  • Loading branch information
rvanderwerf committed Mar 17, 2016
1 parent 0cf497d commit ddae873
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -17,7 +17,7 @@ plugins {
id "com.jfrog.bintray" version "1.1"
}

version "2.0.0.RC2"
version "2.0.0.RC3"
group "org.grails.plugins"

apply plugin: "spring-boot"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,4 +1,4 @@
grailsVersion=3.0.11
grailsVersion=3.0.14
gradleWrapperVersion=2.3

websiteUrl=http://grails-plugins.github.io/grails-database-migration
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
#Wed Mar 09 10:35:09 GMT 2016
#Thu Mar 17 10:02:58 CDT 2016
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.3-bin.zip
Expand Up @@ -37,6 +37,7 @@ class AutoRunWithSingleDataSourceSpec extends Specification {

def setup() {
sql = new Sql(dataSource)
//sql.executeUpdate("drop table AUTHOR")
}

def "runs app with a single datasource"() {
Expand Down
Expand Up @@ -15,13 +15,13 @@ dataSources:
driverClassName: org.h2.Driver
username: sa
password:
dbCreate:
dbCreate: none
url: jdbc:h2:mem:multipleFirstDb
second:
pooled: true
jmxExport: true
driverClassName: org.h2.Driver
username: sa
password:
dbCreate:
dbCreate: none
url: jdbc:h2:mem:multipleSecondDb
Expand Up @@ -14,5 +14,5 @@ dataSource:
driverClassName: org.h2.Driver
username: sa
password:
dbCreate:
dbCreate: none
url: jdbc:h2:mem:singleDb

0 comments on commit ddae873

Please sign in to comment.