mirror of
https://github.com/aljazceru/lnd-manageJ.git
synced 2026-01-21 06:54:29 +01:00
21 lines
965 B
Groovy
21 lines
965 B
Groovy
plugins {
|
|
id 'lnd-manageJ.java-library-conventions'
|
|
}
|
|
|
|
dependencies {
|
|
implementation('org.springframework.boot:spring-boot-starter-web')
|
|
implementation('org.springframework.boot:spring-boot-starter-thymeleaf')
|
|
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 testFixtures(project(':model'))
|
|
integrationTestImplementation testFixtures(project(':web'))
|
|
integrationTestImplementation testFixtures(project(':pickhardt-payments'))
|
|
testFixturesImplementation testFixtures(project(':model'))
|
|
}
|