Skip to content

Commit

Permalink
hotfix: fix gradle task
Browse files Browse the repository at this point in the history
'homolog' task was conflicting to 'deploy'
  • Loading branch information
FerroEduardo committed Aug 15, 2022
1 parent d8049a1 commit 3d1c366
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies {
implementation("com.github.minndevelopment:emoji-java:master-SNAPSHOT")
}

task deploy() {
tasks.register('deploy') {
jar {
enabled = false
}
Expand All @@ -53,7 +53,7 @@ task deploy() {
dependsOn 'shadowJar'
}

task deployHomolog() {
tasks.register('homolog') {
jar {
enabled = false
}
Expand Down

0 comments on commit 3d1c366

Please sign in to comment.