|
12 | 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
13 | 13 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
14 | 14 | <java.version>1.8</java.version>
|
15 |
| - <spring.version>1.5.4.RELEASE</spring.version> |
16 | 15 | <nosqlunit.version>0.7.6</nosqlunit.version>
|
17 | 16 | <swagger.version>2.7.0</swagger.version>
|
18 | 17 | </properties>
|
19 | 18 |
|
| 19 | + <dependencyManagement> |
| 20 | + <dependencies> |
| 21 | + <dependency> |
| 22 | + <!-- Import dependency management from Spring Boot --> |
| 23 | + <groupId>org.springframework.boot</groupId> |
| 24 | + <artifactId>spring-boot-dependencies</artifactId> |
| 25 | + <version>1.5.8.RELEASE</version> |
| 26 | + <type>pom</type> |
| 27 | + <scope>import</scope> |
| 28 | + </dependency> |
| 29 | + </dependencies> |
| 30 | + </dependencyManagement> |
| 31 | + |
20 | 32 | <dependencies>
|
21 |
| - <dependency> |
22 |
| - <groupId>org.springframework.boot</groupId> |
23 |
| - <artifactId>spring-boot-dependencies</artifactId> |
24 |
| - <version>${spring.version}</version> |
25 |
| - <type>pom</type> |
26 |
| - </dependency> |
27 | 33 | <dependency>
|
28 | 34 | <groupId>org.springframework.boot</groupId>
|
29 | 35 | <artifactId>spring-boot-starter-web</artifactId>
|
30 |
| - <version>${spring.version}</version> |
31 | 36 | </dependency>
|
32 | 37 | <dependency>
|
33 | 38 | <groupId>org.springframework.boot</groupId>
|
34 | 39 | <artifactId>spring-boot-starter-test</artifactId>
|
35 |
| - <version>${spring.version}</version> |
36 | 40 | </dependency>
|
37 | 41 | <dependency>
|
38 | 42 | <groupId>org.springframework.boot</groupId>
|
39 | 43 | <artifactId>spring-boot-starter</artifactId>
|
40 |
| - <version>${spring.version}</version> |
41 | 44 | <exclusions>
|
42 | 45 | <exclusion>
|
43 | 46 | <groupId>org.springframework.boot</groupId>
|
|
48 | 51 | <dependency>
|
49 | 52 | <groupId>org.springframework.boot</groupId>
|
50 | 53 | <artifactId>spring-boot-starter-log4j2</artifactId>
|
51 |
| - <version>${spring.version}</version> |
52 | 54 | </dependency>
|
53 | 55 | <dependency>
|
54 | 56 | <groupId>org.springframework.boot</groupId>
|
55 | 57 | <artifactId>spring-boot-starter-security</artifactId>
|
56 |
| - <version>${spring.version}</version> |
57 | 58 | </dependency>
|
58 | 59 | <dependency>
|
59 | 60 | <groupId>org.springframework.security</groupId>
|
|
64 | 65 | <dependency>
|
65 | 66 | <groupId>org.springframework.boot</groupId>
|
66 | 67 | <artifactId>spring-boot-starter-data-mongodb</artifactId>
|
67 |
| - <version>${spring.version}</version> |
68 | 68 | </dependency>
|
69 | 69 | <dependency>
|
70 | 70 | <groupId>io.springfox</groupId>
|
|
105 | 105 | <plugin>
|
106 | 106 | <groupId>org.springframework.boot</groupId>
|
107 | 107 | <artifactId>spring-boot-maven-plugin</artifactId>
|
108 |
| - <version>${spring.version}</version> |
109 | 108 | <executions>
|
110 | 109 | <execution>
|
111 | 110 | <goals>
|
|
0 commit comments