File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -122,6 +122,7 @@ task configurePopulateDependencies {
122122task populateDependencies (type : Sync , dependsOn : configurePopulateDependencies) {
123123 into homeLibDir
124124 includeEmptyDirs = false
125+ duplicatesStrategy = DuplicatesStrategy . INCLUDE
125126}
126127
127128// Can't use sync task here because this directory contains other things as well.
@@ -138,7 +139,7 @@ task sourcesJars(type: Sync) {
138139
139140task grailsCreateStartScripts (type : GrailsCreateStartScripts ) {
140141 description = " Creates OS specific scripts to run grails-shell as a JVM application."
141- mainClassName = ' org.grails.cli.GrailsCli'
142+ mainClass . set( ' org.grails.cli.GrailsCli' )
142143 applicationName = ' grails'
143144 defaultJvmOpts = [" -XX:+TieredCompilation" , " -XX:TieredStopAtLevel=1" , " -XX:CICompilerCount=3" ]
144145 outputDir = file(' bin' )
@@ -151,6 +152,8 @@ task grailsCreateStartScripts(type: GrailsCreateStartScripts) {
151152}
152153
153154class GrailsCreateStartScripts extends org.gradle.api.tasks.application. CreateStartScripts {
155+
156+ @Input
154157 Collection<String > projectArtifacts= []
155158
156159 @org.gradle.api.tasks.TaskAction
You can’t perform that action at this time.
0 commit comments