mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 13:05:49 +00:00
Change webjars version to properties
This commit is contained in:
parent
cb3bbf6520
commit
314cbb7431
1 changed files with 8 additions and 3 deletions
11
pom.xml
11
pom.xml
|
@ -17,6 +17,11 @@
|
|||
|
||||
<properties>
|
||||
<java.version>1.8</java.version>
|
||||
|
||||
<!-- Web dependencies -->
|
||||
<webjars-bootstrap.version>3.3.7</webjars-bootstrap.version>
|
||||
<webjars-angularjs.version>1.5.8</webjars-angularjs.version>
|
||||
<webjars-jquery.version>3.1.0</webjars-jquery.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
@ -54,19 +59,19 @@
|
|||
<dependency>
|
||||
<groupId>org.webjars</groupId>
|
||||
<artifactId>bootstrap</artifactId>
|
||||
<version>3.3.7</version>
|
||||
<version>${webjars-bootstrap.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.webjars</groupId>
|
||||
<artifactId>jquery</artifactId>
|
||||
<version>3.1.0</version>
|
||||
<version>${webjars-jquery.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.webjars</groupId>
|
||||
<artifactId>angularjs</artifactId>
|
||||
<version>1.5.8</version>
|
||||
<version>${webjars-angularjs.version>}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
|
Loading…
Reference in a new issue