mirror of
https://github.com/aljazceru/lnd-manageJ.git
synced 2026-01-21 15:04:22 +01:00
31 lines
802 B
Groovy
31 lines
802 B
Groovy
plugins {
|
|
id 'lnd-manageJ.java-conventions'
|
|
}
|
|
|
|
dependencies {
|
|
implementation('org.springframework.boot:spring-boot-starter-web')
|
|
implementation('com.google.guava:guava:31.0.1-jre')
|
|
implementation project(':grpc-adapter')
|
|
implementation project(':model')
|
|
runtimeOnly 'org.postgresql:postgresql'
|
|
testImplementation testFixtures(project(':model'))
|
|
}
|
|
|
|
bootJar {
|
|
archiveClassifier.set('boot')
|
|
}
|
|
|
|
jacocoTestCoverageVerification {
|
|
violationRules {
|
|
rules.forEach {rule ->
|
|
rule.limits.forEach {limit ->
|
|
if (limit.counter == 'INSTRUCTION') {
|
|
limit.minimum = 0.97
|
|
}
|
|
if (limit.counter == 'METHOD') {
|
|
limit.minimum = 0.95
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |