mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
31 lines
780 B
Groovy
31 lines
780 B
Groovy
plugins {
|
|
id 'bisq.java-conventions'
|
|
}
|
|
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
shadowDistTar.enabled = false
|
|
shadowDistZip.enabled = false
|
|
|
|
jar.manifest.attributes(
|
|
"Implementation-Title": project.name,
|
|
"Implementation-Version": version)
|
|
|
|
mainClassName = 'bisq.seednode.SeedNodeMain'
|
|
|
|
dependencies {
|
|
implementation enforcedPlatform(project(':platform'))
|
|
implementation project(':common')
|
|
implementation project(':proto')
|
|
implementation project(':p2p')
|
|
implementation project(':core')
|
|
implementation libs.protobuf.java
|
|
annotationProcessor libs.lombok
|
|
compileOnly libs.lombok
|
|
implementation libs.google.guava
|
|
implementation libs.slf4j.api
|
|
implementation(libs.google.guice) {
|
|
exclude(module: 'guava')
|
|
}
|
|
}
|