|
6 | 6 | <parent> |
7 | 7 | <groupId>org.springframework.boot</groupId> |
8 | 8 | <artifactId>spring-boot-starter-parent</artifactId> |
9 | | - <version>2.4.6</version> |
| 9 | + <version>2.4.5</version> |
10 | 10 | </parent> |
11 | 11 |
|
12 | 12 | <groupId>org.couchbase</groupId> |
|
32 | 32 | <dependencies> |
33 | 33 | <dependency> |
34 | 34 | <groupId>org.springframework.boot</groupId> |
35 | | - <artifactId>spring-boot-starter-thymeleaf</artifactId> |
| 35 | + <artifactId>spring-boot</artifactId> |
36 | 36 | </dependency> |
37 | 37 | <dependency> |
38 | 38 | <groupId>org.springframework.boot</groupId> |
39 | 39 | <artifactId>spring-boot-starter-web</artifactId> |
40 | 40 | </dependency> |
41 | | - |
42 | 41 | <dependency> |
43 | | - <groupId>org.springframework.boot</groupId> |
44 | | - <artifactId>spring-boot-devtools</artifactId> |
45 | | - <scope>runtime</scope> |
46 | | - <optional>true</optional> |
47 | | - </dependency> |
| 42 | + <groupId>org.springframework.boot</groupId> |
| 43 | + <artifactId>spring-boot-starter-thymeleaf</artifactId> |
| 44 | + </dependency> |
48 | 45 | <dependency> |
49 | 46 | <groupId>org.springframework.boot</groupId> |
50 | 47 | <artifactId>spring-boot-starter-test</artifactId> |
51 | 48 | <scope>test</scope> |
52 | 49 | </dependency> |
| 50 | + |
53 | 51 | <dependency> |
54 | | - <groupId>org.springframework.boot</groupId> |
55 | | - <artifactId>spring-boot-starter-test</artifactId> |
56 | | - <scope>test</scope> |
| 52 | + <groupId>io.springfox</groupId> |
| 53 | + <artifactId>springfox-boot-starter</artifactId> |
| 54 | + <version>${swagger.version}</version> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>io.springfox</groupId> |
| 58 | + <artifactId>springfox-spring-web</artifactId> |
| 59 | + <version>${springweb.version}</version> |
57 | 60 | </dependency> |
58 | | - |
59 | 61 | <dependency> |
60 | 62 | <groupId>io.springfox</groupId> |
61 | 63 | <artifactId>springfox-swagger2</artifactId> |
62 | | - <version>2.5.0</version> |
| 64 | + <version>${swagger.version}</version> |
| 65 | + <scope>compile</scope> |
63 | 66 | </dependency> |
64 | | - |
65 | 67 | <dependency> |
66 | 68 | <groupId>io.springfox</groupId> |
67 | 69 | <artifactId>springfox-swagger-ui</artifactId> |
68 | | - <version>2.5.0</version> |
| 70 | + <version>${swagger.version}</version> |
| 71 | + <scope>compile</scope> |
69 | 72 | </dependency> |
70 | 73 |
|
71 | 74 | <dependency> |
|
94 | 97 | </dependencies> |
95 | 98 |
|
96 | 99 | <build> |
| 100 | + <resources> |
| 101 | + <resource> |
| 102 | + <directory>src/main/resources</directory> |
| 103 | + <includes> |
| 104 | + <include>*.properties</include> |
| 105 | + </includes> |
| 106 | + </resource> |
| 107 | + </resources> |
97 | 108 | <plugins> |
98 | 109 | <plugin> |
99 | 110 | <groupId>org.springframework.boot</groupId> |
|
0 commit comments