Fixed running 'bower install' during gradle install WAR build (it didn't

actually work as it was)
This commit is contained in:
Michael Vorburger 2013-12-06 20:36:21 +01:00
parent c6a48b3226
commit 500535ae11
2 changed files with 5 additions and 7 deletions

2
.gitignore vendored
View File

@ -1,5 +1,5 @@
.idea .idea
.gradle .gradle/
build build
lib-cov lib-cov
lib lib

View File

@ -20,13 +20,11 @@ war {
// from "dist" // from "dist"
} }
assemble { war.doFirst {
doFirst {
exec { exec {
commandLine 'bower', 'install' commandLine 'bower', 'install'
} }
} }
}
install { install {
repositories.mavenInstaller { repositories.mavenInstaller {