Skip to content
This repository has been archived by the owner on Jul 6, 2019. It is now read-only.

Commit

Permalink
Fixed problems with grails 2 upgrade (h2)
Browse files Browse the repository at this point in the history
  • Loading branch information
bluesliverx committed Feb 18, 2012
1 parent 1c40095 commit d0962ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion grails-app/conf/BuildConfig.groovy
Expand Up @@ -57,6 +57,6 @@ grails.project.dependency.resolution = {
provided ':svn:1.0.2', {
export = false
}
compile ':spring-security-core:1.2.6'
compile ':spring-security-core:1.2.7.2'
}
}
4 changes: 2 additions & 2 deletions grails-app/conf/DataSource.groovy
@@ -1,10 +1,10 @@
dataSource {
pooled = true
driverClassName = 'org.hsqldb.jdbcDriver'
driverClassName = 'org.h2.Driver'
username = 'sa'
password = ''
dbCreate = 'update'
url = 'jdbc:hsqldb:mem:testDb'
url = 'jdbc:h2:mem:testDb'
}

hibernate {
Expand Down

0 comments on commit d0962ef

Please sign in to comment.