From 16c143074216f5e4047f1b515929889c34223c80 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Tue, 12 Aug 2014 13:47:42 -0400 Subject: [PATCH] Dependency on hibernate shouldn't be exported The plugin expresses a dependency on: ':hibernate:3.6.10.2' In conf/BuildConfig.groovy. This dependency should be marked as "export = false" so users of this plugin don't inadvertently get this dependency. --- grails-app/conf/BuildConfig.groovy | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/grails-app/conf/BuildConfig.groovy b/grails-app/conf/BuildConfig.groovy index 69ad4de..587fea5 100644 --- a/grails-app/conf/BuildConfig.groovy +++ b/grails-app/conf/BuildConfig.groovy @@ -41,7 +41,9 @@ grails.project.dependency.resolution = { } plugins { if (grailsVersion[0..2].toDouble() >= 2.3) { - runtime ':hibernate:3.6.10.2' + runtime(':hibernate:3.6.10.2'){ + export = false + } } runtime ":jquery:1.7.2" compile ":constraints:0.6.0"