Use dependsOn for dependencies on dist & ideaPlugin tasks

instead `shouldRunAfter`
This commit is contained in:
Vyacheslav Gerasimov
2018-02-01 17:18:53 +03:00
parent a595fdd312
commit ec511f7a78
9 changed files with 9 additions and 12 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ val jar = runtimeJar(task<ShadowJar>("shadowJar")) {
}
ideaPlugin {
shouldRunAfter(":dist")
dependsOn(":dist")
from(jar)
from(sideJars)
}