Files
lnd-manageJ/backend/build.gradle
2022-05-08 22:47:58 +02:00

22 lines
622 B
Groovy

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