File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed
src/main/java/ru/mystamps/web Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 340
340
</parent >
341
341
342
342
<properties >
343
- <!-- Don't forget to update version in MvcConfig and Url classes -->
343
+ <!-- Don't forget to update version in the Url class -->
344
344
<bootstrap .version>3.3.6</bootstrap .version>
345
345
346
346
<cglib .version>2.2.2</cglib .version>
388
388
<!-- Redefine default value from spring-boot-dependencies (https://git.io/vKAiK) -->
389
389
<jetty .version>9.2.18.v20160721</jetty .version>
390
390
391
- <!-- Don't forget to update version in MvcConfig and Url classes -->
391
+ <!-- Don't forget to update version in the Url class -->
392
392
<jquery .version>1.9.1</jquery .version>
393
393
394
394
<license .plugin.version>1.9.0</license .plugin.version>
406
406
<pmd .plugin.version>3.6</pmd .plugin.version>
407
407
<resources .plugin.version>2.7</resources .plugin.version>
408
408
409
- <!-- Don't forget to update version in MvcConfig and Url classes -->
409
+ <!-- Don't forget to update version in the Url class -->
410
410
<selectizejs .version>0.12.1</selectizejs .version>
411
411
412
412
<selenium .htmlunit.version>2.20</selenium .htmlunit.version>
Original file line number Diff line number Diff line change @@ -87,16 +87,16 @@ public final class Url {
87
87
public static final String SERIES_ADD_JS = "/public/js/series/add.min.js" ;
88
88
public static final String COLLECTION_INFO_JS = "/public/js/collection/info.min.js" ;
89
89
90
- public static final String BOOTSTRAP_CSS = "/public/bootstrap/css/bootstrap.min.css" ;
91
- public static final String BOOTSTRAP_JS = "/public/bootstrap/js/ bootstrap.min.js " ;
92
- public static final String JQUERY_JS = "/public/jquery/jquery .min.js" ;
93
- // CheckStyle: ignore LineLength for next 1 lines
90
+ // CheckStyle: ignore LineLength for next 4 lines
91
+ public static final String BOOTSTRAP_CSS = "/public/bootstrap/3.3.6/css/ bootstrap.min.css " ;
92
+ public static final String BOOTSTRAP_JS = "/public/bootstrap/3.3.6/js/bootstrap .min.js" ;
93
+ public static final String JQUERY_JS = "/public/jquery/1.9.1/jquery.min.js" ;
94
94
public static final String BOOTSTRAP_LANGUAGE = "https://cdn.rawgit.com/usrz/bootstrap-languages/3ac2a3d2b27ac43a471cd99e79d378a03b2c6b5f/languages.min.css" ;
95
95
96
96
// CheckStyle: ignore LineLength for next 3 lines
97
97
// TODO: use minimal version of CSS file when it will be available (https://github.com/webjars/selectize.js/issues/3)
98
- public static final String SELECTIZE_CSS = "/public/selectize/css/selectize.bootstrap3.css" ;
99
- public static final String SELECTIZE_JS = "/public/selectize/js/standalone/selectize.min.js" ;
98
+ public static final String SELECTIZE_CSS = "/public/selectize/0.12.1/ css/selectize.bootstrap3.css" ;
99
+ public static final String SELECTIZE_JS = "/public/selectize/0.12.1/ js/standalone/selectize.min.js" ;
100
100
101
101
// see also pom.xml and ru.mystamps.web.config.MvcConfig#addResourceHandlers()
102
102
// CheckStyle: ignore LineLength for next 5 lines
Original file line number Diff line number Diff line change @@ -84,11 +84,11 @@ public void addResourceHandlers(ResourceHandlerRegistry registry) {
84
84
85
85
// For WebJars:
86
86
registry .addResourceHandler ("/public/bootstrap/**" )
87
- .addResourceLocations ("classpath:/META-INF/resources/webjars/bootstrap/3.3.6/ " );
87
+ .addResourceLocations ("classpath:/META-INF/resources/webjars/bootstrap/" );
88
88
registry .addResourceHandler ("/public/jquery/**" )
89
- .addResourceLocations ("classpath:/META-INF/resources/webjars/jquery/1.9.1/ " );
89
+ .addResourceLocations ("classpath:/META-INF/resources/webjars/jquery/" );
90
90
registry .addResourceHandler ("/public/selectize/**" )
91
- .addResourceLocations ("classpath:/META-INF/resources/webjars/selectize.js/0.12.1/ " );
91
+ .addResourceLocations ("classpath:/META-INF/resources/webjars/selectize.js/" );
92
92
}
93
93
94
94
@ Override
You can’t perform that action at this time.
0 commit comments