Skip to content

Commit

Permalink
Fix for duplicate dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ubfx committed Sep 11, 2024
1 parent 6093706 commit 224683c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ buildscript {
}

dependencies {
//implementation project(':BinExport')
implementation project(':BinExport')
implementation 'org.xerial:sqlite-jdbc:3.46.0.1'
}

Expand All @@ -48,6 +48,10 @@ else {
}
//----------------------END "DO NOT MODIFY" SECTION-------------------------------

tasks.named("buildExtension").configure {
dependsOn(":BinExport:generateProto")
//tasks.named("buildExtension").configure {
// dependsOn(":BinExport:generateProto")
//}

tasks.named("copyDependencies").configure {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}

0 comments on commit 224683c

Please sign in to comment.