mirror of
https://github.com/aljazceru/lnd-manageJ.git
synced 2026-02-03 13:14:25 +01:00
21 lines
833 B
Plaintext
21 lines
833 B
Plaintext
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("org.webjars:webjars-locator")
|
|
implementation("org.webjars:bootstrap")
|
|
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"))
|
|
}
|