Skip to content

Commit

Permalink
update to cache plugin 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Apr 24, 2014
1 parent 0f593c3 commit 6bd173f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle/assemble.gradle
Expand Up @@ -98,7 +98,7 @@ task sourcesJars(type: Sync) {

task pluginsFromRepo {
ext.plugins = [
cache: "1.1.2",
cache: "1.1.3",
'database-migration': "1.4.0",
hibernate4: "4.3.5.1",
jquery: "1.11.0.2",
Expand Down
Expand Up @@ -58,7 +58,7 @@ grails.project.dependency.resolution = {

// plugins for the compile step
compile ":scaffolding:2.1.0"
compile ':cache:1.1.2'
compile ':cache:1.1.3'
compile ":asset-pipeline:1.8.3"

// plugins needed at runtime but not for compilation
Expand Down
4 changes: 2 additions & 2 deletions grails-resources/src/grails/grails-app/conf/DataSource.groovy
Expand Up @@ -8,8 +8,8 @@ dataSource {
hibernate {
cache.use_second_level_cache = true
cache.use_query_cache = false
cache.region.factory_class = 'net.sf.ehcache.hibernate.EhCacheRegionFactory' // Hibernate 3
// cache.region.factory_class = 'org.hibernate.cache.ehcache.EhCacheRegionFactory' // Hibernate 4
// cache.region.factory_class = 'net.sf.ehcache.hibernate.EhCacheRegionFactory' // Hibernate 3
cache.region.factory_class = 'org.hibernate.cache.ehcache.EhCacheRegionFactory' // Hibernate 4
singleSession = true // configure OSIV singleSession mode
}

Expand Down

0 comments on commit 6bd173f

Please sign in to comment.