Skip to content

Commit

Permalink
fix: explicitly specify dependency for local projects
Browse files Browse the repository at this point in the history
Signed-off-by: Night Owl <nightowl121@protonmail.com>
  • Loading branch information
nightowl121 committed Mar 15, 2023
1 parent a4d9413 commit 0c33df1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions contracts/javascore/lightclients/tendermint/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ jacocoTestReport {
}
}

tasks.named('compileJava') {
dependsOn(':ibc:optimizedJar')
dependsOn(':score-util:jar')
dependsOn(':lib:jar')
}

optimizedJar {
mainClassName = 'ibc.tendermint.TendermintLightClient'
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
Expand Down

0 comments on commit 0c33df1

Please sign in to comment.