Skip to content
Snippets Groups Projects
Commit 3e221f78 authored by Robert Goldmann's avatar Robert Goldmann
Browse files

#769 - use webjars-locator-lite

parent a593037b
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
<properties> <properties>
<jlibs.version>3.2.0</jlibs.version> <jlibs.version>3.2.0</jlibs.version>
<versionizer.version>3.0.1</versionizer.version> <versionizer.version>3.0.1</versionizer.version>
<webjars-locator.version>0.52</webjars-locator.version> <webjars-locator.version>1.1.0</webjars-locator.version>
<jquery.version>3.7.1</jquery.version> <jquery.version>3.7.1</jquery.version>
<materializecss.version>1.0.0</materializecss.version> <materializecss.version>1.0.0</materializecss.version>
<fontawesome.version>6.7.2</fontawesome.version> <fontawesome.version>6.7.2</fontawesome.version>
...@@ -149,7 +149,7 @@ ...@@ -149,7 +149,7 @@
<!--Webjars--> <!--Webjars-->
<dependency> <dependency>
<groupId>org.webjars</groupId> <groupId>org.webjars</groupId>
<artifactId>webjars-locator</artifactId> <artifactId>webjars-locator-lite</artifactId>
<version>${webjars-locator.version}</version> <version>${webjars-locator.version}</version>
</dependency> </dependency>
<dependency> <dependency>
......
...@@ -138,7 +138,7 @@ ...@@ -138,7 +138,7 @@
<!-- Scripts--> <!-- Scripts-->
<#import "../helpers/scripts.ftl" as scripts> <#import "../helpers/scripts.ftl" as scripts>
<@scripts.scripts/> <@scripts.scripts/>
<script src="<@s.url '/webjars/vanilla-picker/2.12.3/dist/vanilla-picker.min.js'/>"></script> <script src="<@s.url '/webjars/vanilla-picker/dist/vanilla-picker.min.js'/>"></script>
<script src="<@s.url '/js/accounts.js'/>"></script> <script src="<@s.url '/js/accounts.js'/>"></script>
<script src="<@s.url '/js/iconSelect.js'/>"></script> <script src="<@s.url '/js/iconSelect.js'/>"></script>
<script src="<@s.url '/js/fontColorPicker.js'/>"></script> <script src="<@s.url '/js/fontColorPicker.js'/>"></script>
......
...@@ -118,7 +118,7 @@ ...@@ -118,7 +118,7 @@
<!-- Scripts--> <!-- Scripts-->
<#import "../helpers/scripts.ftl" as scripts> <#import "../helpers/scripts.ftl" as scripts>
<@scripts.scripts/> <@scripts.scripts/>
<script src="<@s.url '/webjars/vanilla-picker/2.12.3/dist/vanilla-picker.min.js'/>"></script> <script src="<@s.url '/webjars/vanilla-picker/dist/vanilla-picker.min.js'/>"></script>
<script src="<@s.url '/js/categories.js'/>"></script> <script src="<@s.url '/js/categories.js'/>"></script>
<script src="<@s.url '/js/iconSelect.js'/>"></script> <script src="<@s.url '/js/iconSelect.js'/>"></script>
<script src="<@s.url '/js/fontColorPicker.js'/>"></script> <script src="<@s.url '/js/fontColorPicker.js'/>"></script>
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<@header.header "BudgetMaster - ${title}"/> <@header.header "BudgetMaster - ${title}"/>
<#import "/spring.ftl" as s> <#import "/spring.ftl" as s>
<link rel="stylesheet" href="<@s.url "/webjars/codemirror/5.62.2/lib/codemirror.css"/>"> <link rel="stylesheet" href="<@s.url "/webjars/codemirror/lib/codemirror.css"/>">
<@header.style "charts"/> <@header.style "charts"/>
</head> </head>
<@header.body> <@header.body>
...@@ -102,8 +102,8 @@ ...@@ -102,8 +102,8 @@
<!-- Scripts--> <!-- Scripts-->
<#import "../helpers/scripts.ftl" as scripts> <#import "../helpers/scripts.ftl" as scripts>
<@scripts.scripts/> <@scripts.scripts/>
<script src="<@s.url '/webjars/codemirror/5.62.2/lib/codemirror.js'/>"></script> <script src="<@s.url '/webjars/codemirror/lib/codemirror.js'/>"></script>
<script src="<@s.url '/webjars/codemirror/5.62.2/mode/javascript/javascript.js'/>"></script> <script src="<@s.url '/webjars/codemirror/mode/javascript/javascript.js'/>"></script>
<script src="<@s.url '/js/charts.js'/>"></script> <script src="<@s.url '/js/charts.js'/>"></script>
</@header.body> </@header.body>
</html> </html>
\ No newline at end of file
...@@ -21,9 +21,9 @@ ...@@ -21,9 +21,9 @@
<#import "/spring.ftl" as s> <#import "/spring.ftl" as s>
<title>${title}</title> <title>${title}</title>
<meta charset="UTF-8"/> <meta charset="UTF-8"/>
<link rel="stylesheet" href="<@s.url '/webjars/font-awesome/6.5.2/css/all.min.css'/>"> <link rel="stylesheet" href="<@s.url '/webjars/font-awesome/css/all.min.css'/>">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="<@s.url "/webjars/materializecss/1.0.0/css/materialize.min.css"/>"> <link rel="stylesheet" href="<@s.url "/webjars/materializecss/css/materialize.min.css"/>">
<@style "colors"/> <@style "colors"/>
<@style "style"/> <@style "style"/>
<@style "navbar"/> <@style "navbar"/>
......
<#macro scripts> <#macro scripts>
<#import "/spring.ftl" as s> <#import "/spring.ftl" as s>
<script src="<@s.url '/webjars/jquery/3.7.1/jquery.min.js'/>"></script> <script src="<@s.url '/webjars/jquery/jquery.min.js'/>"></script>
<script src="<@s.url '/webjars/materializecss/1.0.0/js/materialize.min.js'/>"></script> <script src="<@s.url '/webjars/materializecss/js/materialize.min.js'/>"></script>
<script src="<@s.url '/webjars/mousetrap/1.6.5/mousetrap.js'/>"></script> <script src="<@s.url '/webjars/mousetrap/mousetrap.js'/>"></script>
<script> <script>
rootURL = "<@s.url ''/>" rootURL = "<@s.url ''/>"
</script> </script>
......
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
<!-- Scripts--> <!-- Scripts-->
<#import "../helpers/scripts.ftl" as scripts> <#import "../helpers/scripts.ftl" as scripts>
<@scripts.scripts/> <@scripts.scripts/>
<script src="<@s.url '/webjars/sortablejs/1.15.3/Sortable.min.js'/>"></script> <script src="<@s.url '/webjars/sortablejs/Sortable.min.js'/>"></script>
<script src="<@s.url '/js/reports.js'/>"></script> <script src="<@s.url '/js/reports.js'/>"></script>
<script src="<@s.url '/js/globalDatePicker.js'/>"></script> <script src="<@s.url '/js/globalDatePicker.js'/>"></script>
<script src="<@s.url '/js/filter.js'/>"></script> <script src="<@s.url '/js/filter.js'/>"></script>
......
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
<!-- Scripts--> <!-- Scripts-->
<#import "../helpers/scripts.ftl" as scripts> <#import "../helpers/scripts.ftl" as scripts>
<@scripts.scripts/> <@scripts.scripts/>
<script src="<@s.url '/webjars/vanilla-picker/2.12.3/dist/vanilla-picker.min.js'/>"></script> <script src="<@s.url '/webjars/vanilla-picker/dist/vanilla-picker.min.js'/>"></script>
<script src="<@s.url '/js/helpers.js'/>"></script> <script src="<@s.url '/js/helpers.js'/>"></script>
<script src="<@s.url '/js/transactions.js'/>"></script> <script src="<@s.url '/js/transactions.js'/>"></script>
<script src="<@s.url '/js/templates.js'/>"></script> <script src="<@s.url '/js/templates.js'/>"></script>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment