Files
lnd-manageJ/ui/build.gradle
2022-05-11 08:17:54 +02:00

19 lines
728 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(':model')
implementation project(':web')
testImplementation testFixtures(project(':model'))
integrationTestImplementation project(':web')
integrationTestImplementation testFixtures(project(':model'))
integrationTestImplementation testFixtures(project(':ui'))
testFixturesImplementation project(':model')
testFixturesImplementation testFixtures(project(':model'))
testFixturesImplementation project(':web')
}