Skip to content

Commit 90ec3c0

Browse files
committed
Use webjars-locator-lite and do not request specific versions of resources in the web app
1 parent 94d9d42 commit 90ec3c0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

notification-service/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies {
3939
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
4040
implementation("org.jetbrains.kotlin:kotlin-reflect")
4141
// "webjars" dependencies are needed to serve `index.html` and its resources
42-
// TODO: add `webjars-locator-lite` dependency and do not use specific versions of assets after https://github.com/spring-projects/spring-boot/issues/40146 will be resolved
42+
implementation("org.webjars:webjars-locator-lite")
4343
implementation("org.webjars:sockjs-client:$sockjsClientVersion")
4444
implementation("org.webjars:stomp-websocket:$stompWebsocketVersion")
4545
implementation("org.webjars:bootstrap:$bootstrapVersion")

notification-service/src/main/resources/static/index.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
<html>
33
<head>
44
<title>Event-driven architecture demo</title>
5-
<link href="/webjars/bootstrap/5.3.3/css/bootstrap.min.css" rel="stylesheet">
5+
<link href="/webjars/bootstrap/css/bootstrap.min.css" rel="stylesheet">
66
<link href="/main.css" rel="stylesheet">
7-
<script src="/webjars/jquery/3.7.1/jquery.min.js"></script>
8-
<script src="/webjars/sockjs-client/1.5.1/sockjs.min.js"></script>
9-
<script src="/webjars/stomp-websocket/2.3.4/stomp.min.js"></script>
7+
<script src="/webjars/jquery/jquery.min.js"></script>
8+
<script src="/webjars/sockjs-client/sockjs.min.js"></script>
9+
<script src="/webjars/stomp-websocket/stomp.min.js"></script>
1010
<script src="/app.js"></script>
1111
</head>
1212
<body>

0 commit comments

Comments
 (0)