mirror of
https://github.com/aljazceru/lnd-manageJ.git
synced 2026-01-20 14:34:24 +01:00
23 lines
863 B
Groovy
23 lines
863 B
Groovy
plugins {
|
|
id 'lnd-manageJ.java-library-conventions'
|
|
}
|
|
|
|
dependencies {
|
|
implementation('org.springframework.boot:spring-boot-starter-web')
|
|
implementation project(':backend')
|
|
implementation project(':pickhardt-payments')
|
|
implementation project(':model')
|
|
testImplementation testFixtures(project(':model'))
|
|
testImplementation testFixtures(project(':pickhardt-payments'))
|
|
integrationTestImplementation 'com.ryantenney.metrics:metrics-spring:3.1.3'
|
|
integrationTestImplementation('org.springframework.boot:spring-boot-starter-web')
|
|
integrationTestImplementation project(':backend')
|
|
integrationTestImplementation project(':grpc-adapter')
|
|
integrationTestImplementation testFixtures(project(':model'))
|
|
integrationTestImplementation testFixtures(project(':pickhardt-payments'))
|
|
}
|
|
|
|
pitest {
|
|
testStrengthThreshold = 99
|
|
}
|