-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6522 from alvasw/gradle_cli_module_build_gradle
Create build.gradle for cli module
- Loading branch information
Showing
2 changed files
with
39 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
distTar.enabled = true | ||
|
||
mainClassName = 'bisq.cli.CliMain' | ||
|
||
dependencies { | ||
implementation project(':proto') | ||
annotationProcessor libs.lombok | ||
compileOnly libs.lombok | ||
implementation libs.logback.classic | ||
implementation libs.logback.core | ||
implementation libs.google.guava | ||
implementation libs.protobuf.java | ||
implementation libs.jopt | ||
implementation libs.slf4j.api | ||
implementation(libs.grpc.core) { | ||
exclude(module: 'animal-sniffer-annotations') | ||
exclude(module: 'guava') | ||
} | ||
implementation(libs.grpc.stub) { | ||
exclude(module: 'animal-sniffer-annotations') | ||
exclude(module: 'guava') | ||
} | ||
runtimeOnly(libs.grpc.netty.shaded) { | ||
exclude(module: 'animal-sniffer-annotations') | ||
exclude(module: 'guava') | ||
} | ||
testAnnotationProcessor libs.lombok | ||
testCompileOnly libs.lombok | ||
testImplementation libs.cowwoc.diff.match.patch | ||
|
||
testImplementation libs.junit.jupiter.api | ||
testImplementation libs.junit.jupiter.params | ||
testRuntimeOnly libs.javax.annotation | ||
testRuntimeOnly libs.junit.jupiter.engine | ||
} | ||
|
||
test { | ||
useJUnitPlatform() | ||
} |