Files
lnd-manageJ/web/build.gradle
2022-05-11 07:12:35 +02:00

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'))
}