mirror of
https://github.com/aljazceru/lnd-manageJ.git
synced 2026-01-27 18:04:24 +01:00
19 lines
728 B
Groovy
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')
|
|
}
|