Skip to content

Commit

Permalink
make war file executable
Browse files Browse the repository at this point in the history
  • Loading branch information
dularion committed Jan 14, 2017
1 parent 73c0825 commit 7ab4d80
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build.gradle
Expand Up @@ -29,6 +29,12 @@ apply plugin:"org.grails.grails-gsp"
apply plugin:"com.craigburke.bower-installer"
apply plugin:"asset-pipeline"
apply plugin:"org.grails.plugins.views-json"
apply plugin: 'spring-boot'


springBoot {
executable = true
}

ext {
grailsVersion = project.grailsVersion
Expand Down Expand Up @@ -128,3 +134,9 @@ assets {
minifyJs = true
minifyCss = true
}


bootRun {
// local.config.location is just a random name. You can use yours.
jvmArgs = ['-Dlocal.config.location=app-config.yml']
}

0 comments on commit 7ab4d80

Please sign in to comment.