mirror of
https://github.com/aljazceru/lnd-manageJ.git
synced 2026-01-29 02:44:26 +01:00
16 lines
636 B
Groovy
16 lines
636 B
Groovy
plugins {
|
|
id 'lnd-manageJ.java-library-conventions'
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
implementation project(':model')
|
|
implementation project(':invoices')
|
|
implementation project(':payments')
|
|
testFixturesApi testFixtures(project(':model'))
|
|
integrationTestRuntimeOnly 'com.h2database:h2'
|
|
integrationTestImplementation project(':invoices')
|
|
integrationTestImplementation project(':payments')
|
|
integrationTestImplementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
integrationTestImplementation testFixtures(project(':model'))
|
|
} |