mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
Fix packaging dependencies.
This commit is contained in:
parent
b7261182e8
commit
5c428e4b00
1 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@ public class PublishPlugin @Inject constructor(val files: KFiles, val factory: P
|
|||
}
|
||||
|
||||
@Task(name = TASK_UPLOAD_BINTRAY, description = "Upload files to Bintray",
|
||||
dependsOn = arrayOf(TASK_GENERATE_POM))
|
||||
dependsOn = arrayOf(TASK_GENERATE_POM, "assemble"))
|
||||
fun taskUploadBintray(project: Project): TaskResult {
|
||||
validateProject(project)
|
||||
return uploadBintray(project)
|
||||
|
@ -100,7 +100,7 @@ public class PublishPlugin @Inject constructor(val files: KFiles, val factory: P
|
|||
}
|
||||
|
||||
@Task(name = TASK_UPLOAD_GITHUB, description = "Upload files to Github",
|
||||
dependsOn = arrayOf(TASK_GENERATE_POM))
|
||||
dependsOn = arrayOf(TASK_GENERATE_POM, "assemble"))
|
||||
fun taskUploadGithub(project: Project): TaskResult {
|
||||
validateProject(project)
|
||||
return uploadGithub(project)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue