Skip to content

Commit f204440

Browse files
committed
work
1 parent c277ead commit f204440

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

pom.xml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@
8181
<version.thymeleaf-spring-data-dialect>3.5.0</version.thymeleaf-spring-data-dialect>
8282

8383
<!-- Webjars -->
84-
<webjars.jquery.version>3.6.1</webjars.jquery.version>
84+
<webjars.jquery.version>3.6.3</webjars.jquery.version>
8585
<webjars.popper.js.version>2.9.3</webjars.popper.js.version>
86-
<webjars.bootstrap.version>5.2.2</webjars.bootstrap.version>
86+
<webjars.bootstrap.version>5.2.3</webjars.bootstrap.version>
8787
<webjars.font-awesome.version>6.2.0</webjars.font-awesome.version>
8888
<opencsv.version>5.7.1</opencsv.version>
8989

@@ -123,7 +123,7 @@
123123

124124
<version.maven-invoker-plugin>3.3.0</version.maven-invoker-plugin>
125125
<version.maven-clean-plugin>3.2.0</version.maven-clean-plugin>
126-
<version.maven-dependency-plugin>3.3.0</version.maven-dependency-plugin>
126+
<version.maven-dependency-plugin>3.4.0</version.maven-dependency-plugin>
127127
<version.maven-compiler-plugin>3.10.1</version.maven-compiler-plugin>
128128
<version.maven-install-plugin>3.0.1</version.maven-install-plugin>
129129
<version.maven-deploy-plugin>3.0.0</version.maven-deploy-plugin>
@@ -272,9 +272,8 @@
272272
<scope>import</scope>
273273
</dependency>
274274

275-
<!-- webjars -->
276275
<dependency>
277-
<groupId>org.webjars</groupId>
276+
<groupId>org.webjars.npm</groupId>
278277
<artifactId>jquery</artifactId>
279278
<version>${webjars.jquery.version}</version>
280279
</dependency>
@@ -284,7 +283,7 @@
284283
<version>${webjars.popper.js.version}</version>
285284
</dependency>
286285
<dependency>
287-
<groupId>org.webjars</groupId>
286+
<groupId>org.webjars.npm</groupId>
288287
<artifactId>bootstrap</artifactId>
289288
<version>${webjars.bootstrap.version}</version>
290289
</dependency>
@@ -641,15 +640,15 @@
641640
</dependency>
642641

643642
<dependency>
644-
<groupId>org.webjars</groupId>
643+
<groupId>org.webjars.npm</groupId>
645644
<artifactId>jquery</artifactId>
646645
</dependency>
647646
<dependency>
648647
<groupId>org.webjars</groupId>
649648
<artifactId>popper.js</artifactId>
650649
</dependency>
651650
<dependency>
652-
<groupId>org.webjars</groupId>
651+
<groupId>org.webjars.npm</groupId>
653652
<artifactId>bootstrap</artifactId>
654653
</dependency>
655654
<dependency>

src/main/resources/templates/layout/page.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<meta name="author" content="Thomas Woehlke">
1414
<meta name="description" content="Your Todo-List for Getting Things Done.">
1515
<title th:replace="${headtitle}">SimpleWorklist</title>
16-
<link th:href="@{/webjars/bootstrap/5.2.2/css/bootstrap.min.css}" rel="stylesheet"/>
16+
<link th:href="@{/webjars/bootstrap/5.2.3/css/bootstrap.min.css}" rel="stylesheet"/>
1717
<link th:href="@{/webjars/font-awesome/6.2.0/css/all.min.css}" rel="stylesheet"/>
1818
<link href="https://fonts.googleapis.com/css?family=Lato|Varela+Round" rel="stylesheet">
1919
<link th:href="@{/css/main.css}" rel="stylesheet"/>
@@ -106,9 +106,9 @@
106106
</footer>
107107

108108
<script th:src="@{/js/google-analytics.js}"></script>
109-
<script th:src="@{/webjars/jquery/3.6.0/jquery.js}"></script>
109+
<script th:src="@{/webjars/jquery/3.6.3/jquery.js}"></script>
110110
<script th:src="@{/webjars/popper.js/2.9.3/umd/popper.min.js}"></script>
111-
<script th:src="@{/webjars/bootstrap/5.2.2/js/bootstrap.bundle.min.js}"></script>
111+
<script th:src="@{/webjars/bootstrap/5.2.3/js/bootstrap.bundle.min.js}"></script>
112112
<script th:src="@{/webjars/font-awesome/6.2.0/js/all.js}"></script>
113113
<script th:src="@{/js/application.js}"></script>
114114
<script th:inline="javascript">

0 commit comments

Comments
 (0)