mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Configure gradle properly
This commit is contained in:
parent
bb266949e0
commit
6481543600
21
build.gradle
21
build.gradle
@ -311,14 +311,27 @@ configure(project(':desktop')) {
|
||||
|
||||
|
||||
configure(project(':monitor')) {
|
||||
mainClassName = 'bisq.monitor.MonitorMain'
|
||||
mainClassName = 'bisq.monitor.Monitor'
|
||||
|
||||
test {
|
||||
useJUnitPlatform()
|
||||
testLogging {
|
||||
events "passed", "skipped", "failed"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile project(':core')
|
||||
compile "com.sparkjava:spark-core:$sparkVersion"
|
||||
compile 'net.gpedro.integrations.slack:slack-webhook:1.1.1'
|
||||
compile 'org.slf4j:slf4j-api:1.7.22'
|
||||
compile 'ch.qos.logback:logback-core:1.1.10'
|
||||
compile 'ch.qos.logback:logback-classic:1.1.10'
|
||||
compileOnly "org.projectlombok:lombok:$lombokVersion"
|
||||
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
|
||||
|
||||
testCompile 'org.junit.jupiter:junit-jupiter-api:5.3.2'
|
||||
testCompile 'org.junit.jupiter:junit-jupiter-params:5.3.2'
|
||||
testCompileOnly "org.projectlombok:lombok:$lombokVersion"
|
||||
testAnnotationProcessor "org.projectlombok:lombok:$lombokVersion"
|
||||
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.3.2')
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user