Skip to content

Commit 9ab2907

Browse files
committed
#6 Upgrade to Spring Boot 2.4.2
1 parent 1eab1fb commit 9ab2907

File tree

4 files changed

+6
-90
lines changed

4 files changed

+6
-90
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<parent>
1919
<groupId>org.springframework.boot</groupId>
2020
<artifactId>spring-boot-starter-parent</artifactId>
21-
<version>2.3.4.RELEASE</version>
21+
<version>2.4.2</version>
2222
<relativePath/> <!-- lookup parent from repository -->
2323
</parent>
2424

@@ -44,7 +44,7 @@
4444
<dependency>
4545
<groupId>org.springframework.cloud</groupId>
4646
<artifactId>spring-cloud-dependencies</artifactId>
47-
<version>Hoxton.SR8</version>
47+
<version>2020.0.1</version>
4848
<type>pom</type>
4949
<scope>import</scope>
5050
</dependency>

web/pom.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -155,13 +155,6 @@
155155
<groupId>org.springframework.cloud</groupId>
156156
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
157157
</dependency>
158-
159-
<!-- remove this once we switch to consul -->
160-
<dependency>
161-
<groupId>org.springframework.cloud</groupId>
162-
<artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
163-
<scope>test</scope>
164-
</dependency>
165158
</dependencies>
166159

167160
<build>

web/src/main/resources/config/application.properties renamed to web/src/main/resources/application.properties

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
spring.application.name=team-happiness
12
spring.data.rest.base-path=/data
23
spring.mvc.static-path-pattern=/static/**
3-
spring.resources.chain.enabled=true
4-
spring.resources.chain.strategy.content.enabled=true
5-
spring.resources.chain.strategy.content.paths=/**
4+
spring.web.resources.chain.enabled=true
5+
spring.web.resources.chain.strategy.content.enabled=true
6+
spring.web.resources.chain.strategy.content.paths=/**
67
management.endpoints.web.exposure.include=*
78
server.port=8080
89
#Configuring the consul registration center

web/src/test/java/com/austenconstable/web/hierarchy/FeignHierarchyClientIT.java

Lines changed: 0 additions & 78 deletions
This file was deleted.

0 commit comments

Comments
 (0)