Skip to content

Commit bb6d589

Browse files
Merge pull request #309 from Spring-Framework-Java-Apps/2_3_29_SNAPSHOT
2 3 29 snapshot
2 parents 1221308 + f96778f commit bb6d589

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

pom.xml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
<parent>
1111
<groupId>org.springframework.boot</groupId>
1212
<artifactId>spring-boot-starter-parent</artifactId>
13-
<version>2.3.7.RELEASE</version>
13+
<version>2.4.1</version>
1414
</parent>
1515

1616
<scm>
1717
<connection>scm:git:git@github.com:Spring-Framework-Java-Apps/simpleworklist.git</connection>
1818
<developerConnection>scm:git:git@github.com:Spring-Framework-Java-Apps/simpleworklist.git</developerConnection>
1919
<url>https://github.com/Spring-Framework-Java-Apps/simpleworklist/tree/${project.scm.tag}</url>
20-
<tag>branch-2.3-MVC</tag>
20+
<tag>master</tag>
2121
</scm>
2222

2323
<name>simpleworklist</name>
@@ -115,13 +115,15 @@
115115

116116
<!-- Spring Boot and Spring Frameworks -->
117117
<spring-boot-maven-plugin.version>${project.parent.version}</spring-boot-maven-plugin.version>
118-
<spring-data-releasetrain.version>Neumann-SR6</spring-data-releasetrain.version>
119-
<spring-session-bom.version>Dragonfruit-SR1</spring-session-bom.version>
118+
<!--
119+
<spring-data-releasetrain.version>2020.0.2</spring-data-releasetrain.version>
120+
<spring-session-bom.version>2020.0.1</spring-session-bom.version>
121+
-->
120122

121123
<!-- Unit and Integration Testing -->
122124
<xmlunit.version>2.6.4</xmlunit.version>
123125
<xmlunit2.version>2.7.0</xmlunit2.version>
124-
<htmlunit.version>2.43.0</htmlunit.version>
126+
<htmlunit.version>2.45.0</htmlunit.version>
125127
<hamcrest.version>2.2</hamcrest.version>
126128
<jsoup.version>1.13.1</jsoup.version>
127129
<skipTests>true</skipTests>

src/main/resources/application.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,12 @@ org:
8484
strengthBCryptPasswordEncoder: 10
8585
---
8686
spring:
87-
profiles: default
87+
profile: default
8888
datasource:
8989
url: jdbc:postgresql://localdbhost:5432/simpleworklist
9090
---
9191
spring:
92-
profiles: developing
92+
profile: developing
9393
datasource:
9494
url: jdbc:postgresql://localdbhost:5432/simpleworklist_developing
9595
jpa:
@@ -98,7 +98,7 @@ spring:
9898
#ddl-auto: create-drop
9999
---
100100
spring:
101-
profiles: travis
101+
profile: travis
102102
datasource:
103103
url: jdbc:postgresql://localdbhost:5432/simpleworklist_travis
104104
continue-on-error: true
@@ -112,7 +112,7 @@ server:
112112
enabled: false
113113
---
114114
spring:
115-
profiles: testing
115+
profile: testing
116116
datasource:
117117
url: jdbc:postgresql://localdbhost:5432/simpleworklist_testing
118118
jpa:
@@ -147,7 +147,7 @@ logging:
147147
impl: DEBUG
148148
---
149149
spring:
150-
profiles: qa
150+
profile: qa
151151
datasource:
152152
url: jdbc:postgresql://localdbhost:5432/simpleworklist_qa
153153
continue-on-error: true
@@ -183,7 +183,7 @@ logging:
183183
impl: DEBUG
184184
---
185185
spring:
186-
profiles: heroku
186+
profile: heroku
187187
datasource:
188188
url: jdbc:postgresql://localdbhost:5432/simpleworklist_heroku
189189
continue-on-error: true

0 commit comments

Comments
 (0)