Skip to content

Commit 6b2f7a2

Browse files
Denis RosaDenis Rosa
authored andcommitted
fixes
1 parent d6c3214 commit 6b2f7a2

File tree

1 file changed

+26
-15
lines changed

1 file changed

+26
-15
lines changed

pom.xml

Lines changed: 26 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>2.4.6</version>
9+
<version>2.4.5</version>
1010
</parent>
1111

1212
<groupId>org.couchbase</groupId>
@@ -32,40 +32,43 @@
3232
<dependencies>
3333
<dependency>
3434
<groupId>org.springframework.boot</groupId>
35-
<artifactId>spring-boot-starter-thymeleaf</artifactId>
35+
<artifactId>spring-boot</artifactId>
3636
</dependency>
3737
<dependency>
3838
<groupId>org.springframework.boot</groupId>
3939
<artifactId>spring-boot-starter-web</artifactId>
4040
</dependency>
41-
4241
<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>
4845
<dependency>
4946
<groupId>org.springframework.boot</groupId>
5047
<artifactId>spring-boot-starter-test</artifactId>
5148
<scope>test</scope>
5249
</dependency>
50+
5351
<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>
5760
</dependency>
58-
5961
<dependency>
6062
<groupId>io.springfox</groupId>
6163
<artifactId>springfox-swagger2</artifactId>
62-
<version>2.5.0</version>
64+
<version>${swagger.version}</version>
65+
<scope>compile</scope>
6366
</dependency>
64-
6567
<dependency>
6668
<groupId>io.springfox</groupId>
6769
<artifactId>springfox-swagger-ui</artifactId>
68-
<version>2.5.0</version>
70+
<version>${swagger.version}</version>
71+
<scope>compile</scope>
6972
</dependency>
7073

7174
<dependency>
@@ -94,6 +97,14 @@
9497
</dependencies>
9598

9699
<build>
100+
<resources>
101+
<resource>
102+
<directory>src/main/resources</directory>
103+
<includes>
104+
<include>*.properties</include>
105+
</includes>
106+
</resource>
107+
</resources>
97108
<plugins>
98109
<plugin>
99110
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)