Skip to content

Commit

Permalink
fix(gradle): Wrap 'project.repackage' in Boolean call because boolean…
Browse files Browse the repository at this point in the history
…s are hard. (#1010)
  • Loading branch information
Travis Tomsu authored Aug 20, 2018
1 parent 35fe977 commit 8ab9a91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions halyard-web/halyard-web.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ dependencies {
compile project(':halyard-cli')
compile project(':halyard-config')
compile project(':halyard-core')
compile project(':halyard-deploy')
compile project(':halyard-deploy')
compile project(':halyard-proto')

compile('org.lognet:grpc-spring-boot-starter:2.3.2')
compile 'com.google.guava:guava:23.5-jre'
}

tasks.bootRepackage.enabled = project.repackage
tasks.bootRepackage.enabled = Boolean.valueOf(project.repackage)

mainClassName = 'com.netflix.spinnaker.halyard.Main'

Expand Down

0 comments on commit 8ab9a91

Please sign in to comment.