diff options
| author | Paul-Christian Volkmer | 2026-01-08 16:22:57 +0100 |
|---|---|---|
| committer | GitHub | 2026-01-08 15:22:57 +0000 |
| commit | ed4b068127530346345ed16b2e79b33bc5b03d57 (patch) | |
| tree | 173d36e24bb04ea61a2a960dd765e1c745dd6f6b /build.gradle.kts | |
| parent | 7045318e87ecc853c000e9e11c955bc6298f2d56 (diff) | |
build: remove webjars and use custom build (#238)
Diffstat (limited to 'build.gradle.kts')
| -rw-r--r-- | build.gradle.kts | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index c364902..1aa9e58 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -25,11 +25,7 @@ var versions = mapOf( "hapi-fhir" to "8.4.0", "apache-cxf" to "4.1.3", "mockito-kotlin" to "6.1.0", - "archunit" to "1.4.1", - // Webjars - "webjars-locator" to "0.52", - "echarts" to "6.0.0", - "htmx.org" to "1.9.12" + "archunit" to "1.4.1" ) java { @@ -88,9 +84,6 @@ dependencies { implementation("ca.uhn.hapi.fhir:hapi-fhir-structures-r4:${versions["hapi-fhir"]}") implementation("org.apache.httpcomponents.client5:httpclient5") implementation("com.jayway.jsonpath:json-path") - implementation("org.webjars:webjars-locator:${versions["webjars-locator"]}") - implementation("org.webjars.npm:echarts:${versions["echarts"]}") - implementation("org.webjars.npm:htmx.org:${versions["htmx.org"]}") implementation("org.jspecify:jspecify:1.0.0") // Fix for CVE-2025-48924 implementation("org.apache.commons:commons-lang3:3.18.0") |
