Files
lnd-manageJ/backend/build.gradle
2021-12-24 16:16:28 +01:00

19 lines
536 B
Groovy

plugins {
id 'lnd-manageJ.java-library-conventions'
}
dependencies {
implementation project(':caching')
implementation project(':forwarding-history')
implementation project(':grpc-adapter')
implementation project(':model')
implementation project(':onlinepeers')
implementation project(':selfpayments')
implementation project(':transactions')
testImplementation testFixtures(project(':model'))
testImplementation testFixtures(project(':transactions'))
}
pitest {
testStrengthThreshold = 97
}