mirror of
https://github.com/aljazceru/lnd-manageJ.git
synced 2026-01-23 16:04:30 +01:00
31 lines
741 B
Groovy
31 lines
741 B
Groovy
plugins {
|
|
id 'lnd-manageJ.java-conventions'
|
|
}
|
|
|
|
dependencies {
|
|
runtimeOnly project(':web')
|
|
runtimeOnly project(':statistics')
|
|
runtimeOnly 'org.postgresql:postgresql'
|
|
testRuntimeOnly 'com.h2database:h2'
|
|
testImplementation project(':backend')
|
|
testImplementation project(':grpc-adapter')
|
|
}
|
|
|
|
bootJar {
|
|
archiveClassifier.set('boot')
|
|
}
|
|
|
|
jacocoTestCoverageVerification {
|
|
violationRules {
|
|
rules.forEach {rule ->
|
|
rule.limits.forEach {limit ->
|
|
if (limit.counter == 'INSTRUCTION') {
|
|
limit.minimum = 0.37
|
|
}
|
|
if (limit.counter == 'METHOD') {
|
|
limit.minimum = 0.50
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |