File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ buildscript {
1919
2020apply plugin : ' idea'
2121
22+
2223ext {
2324 bintrayPublish = false
2425 // Sets release version
6667}
6768
6869version = grailsVersion
70+ group = " org.grails"
71+ apply plugin : ' io.codearte.nexus-staging'
6972
7073// directories created during the build which are related
7174// to turning the workspace root into a GRAILS_HOME
@@ -204,7 +207,6 @@ subprojects { project ->
204207 apply plugin : ' com.bmuschko.nexus'
205208 apply plugin : ' maven-publish'
206209 apply plugin : ' com.jfrog.bintray'
207- apply plugin : ' io.codearte.nexus-staging'
208210 }
209211 apply plugin : ' eclipse'
210212 apply plugin : ' idea'
Original file line number Diff line number Diff line change @@ -6,10 +6,13 @@ def libsConfigurations = []
66subprojects { subproject ->
77 if (subproject. name == ' grails-dependencies' ) return
88 if (subproject. name == ' grails-bom' ) return
9- configurations {
10- libsConfigurations << libs {
11- extendsFrom compile, runtime
12- [" jsp21" , " uaa" ]. collect { configurations. findByName(it) }. findAll { it != null }. each { extendsFrom it }
9+ if (subproject. name == ' grails-shell' ) {
10+
11+ configurations {
12+ libsConfigurations << libs {
13+ extendsFrom compile, runtime
14+ [" jsp21" , " uaa" ]. collect { configurations. findByName(it) }. findAll { it != null }. each { extendsFrom it }
15+ }
1316 }
1417 }
1518}
You can’t perform that action at this time.
0 commit comments