From 8758cb1a94a5f1500850d55e9ab02ddb136374bd Mon Sep 17 00:00:00 2001 From: David Estes Date: Tue, 8 Mar 2016 08:29:50 -0500 Subject: [PATCH] updated to latest grails version --- application.properties | 2 +- grails-app/conf/BuildConfig.groovy | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/application.properties b/application.properties index 0ea447f..593ddc6 100644 --- a/application.properties +++ b/application.properties @@ -1,3 +1,3 @@ #Grails Metadata file #Mon Mar 02 09:17:36 PST 2015 -app.grails.version=2.2.5 +app.grails.version=2.5.4 diff --git a/grails-app/conf/BuildConfig.groovy b/grails-app/conf/BuildConfig.groovy index 9b79e25..790351b 100644 --- a/grails-app/conf/BuildConfig.groovy +++ b/grails-app/conf/BuildConfig.groovy @@ -6,8 +6,11 @@ grails.project.dependency.resolution = { log 'warn' repositories { - grailsCentral() + inherits true // Whether to inherit repository definitions from plugins + grailsPlugins() + grailsHome() mavenLocal() + grailsCentral() mavenCentral() } @@ -15,7 +18,7 @@ grails.project.dependency.resolution = { } plugins { - build ':release:2.2.1', ':rest-client-builder:1.0.3', { + build ':release:3.1.2', ':rest-client-builder:1.0.3', { export = false } /* @@ -23,7 +26,7 @@ grails.project.dependency.resolution = { export = false } */ - compile(":hibernate:$grailsVersion") { // hibernate only for integration tests + compile(":hibernate:3.6.10.19") { // hibernate only for integration tests export = false // don't make this available to the client app } }