mirror of
https://github.com/aljazceru/lnd-manageJ.git
synced 2026-01-22 07:24:23 +01:00
22 lines
622 B
Groovy
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
|
|
}
|