Skip to content

Commit 73955e6

Browse files
committed
Versions bumps. Removed h2 - suggest local postgres as alternative
1 parent 07f21f9 commit 73955e6

File tree

1 file changed

+19
-40
lines changed

1 file changed

+19
-40
lines changed

pom.xml

Lines changed: 19 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.6.1</version>
8+
<version>2.6.3</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.changenode</groupId>
@@ -70,7 +70,7 @@
7070
<dependency>
7171
<groupId>org.postgresql</groupId>
7272
<artifactId>postgresql</artifactId>
73-
<version>42.3.1</version>
73+
<version>42.3.2</version>
7474
</dependency>
7575

7676
<!-- Layouts -->
@@ -103,7 +103,7 @@
103103
<dependency>
104104
<groupId>org.assertj</groupId>
105105
<artifactId>assertj-core</artifactId>
106-
<version>3.21.0</version>
106+
<version>3.22.0</version>
107107
<scope>test</scope>
108108
</dependency>
109109

@@ -135,7 +135,7 @@
135135
<dependency>
136136
<groupId>org.webjars.npm</groupId>
137137
<artifactId>bootstrap-icons</artifactId>
138-
<version>1.7.2</version>
138+
<version>1.8.0</version>
139139
</dependency>
140140
<dependency>
141141
<groupId>org.webjars</groupId>
@@ -150,7 +150,7 @@
150150
<dependency>
151151
<groupId>org.webjars.npm</groupId>
152152
<artifactId>hyperscript.org</artifactId>
153-
<version>0.8.2</version>
153+
<version>0.9.4</version>
154154
</dependency>
155155
</dependencies>
156156

@@ -161,7 +161,7 @@
161161
<plugin>
162162
<groupId>org.apache.maven.plugins</groupId>
163163
<artifactId>maven-site-plugin</artifactId>
164-
<version>3.9.1</version>
164+
<version>3.10.0</version>
165165
</plugin>
166166
<plugin>
167167
<groupId>org.apache.maven.plugins</groupId>
@@ -186,17 +186,17 @@
186186
<plugin>
187187
<groupId>org.apache.maven.plugins</groupId>
188188
<artifactId>maven-release-plugin</artifactId>
189-
<version>3.0.0-M1</version>
189+
<version>3.0.0-M4</version>
190190
</plugin>
191191
<plugin>
192192
<groupId>org.apache.maven.plugins</groupId>
193193
<artifactId>maven-project-info-reports-plugin</artifactId>
194-
<version>3.1.1</version>
194+
<version>3.1.2</version>
195195
</plugin>
196196
<plugin>
197197
<groupId>org.apache.maven.plugins</groupId>
198198
<artifactId>maven-dependency-plugin</artifactId>
199-
<version>3.1.2</version>
199+
<version>3.2.0</version>
200200
</plugin>
201201
<plugin>
202202
<groupId>org.apache.maven.plugins</groupId>
@@ -211,7 +211,7 @@
211211
<plugin>
212212
<groupId>org.apache.maven.plugins</groupId>
213213
<artifactId>maven-deploy-plugin</artifactId>
214-
<version>3.0.0-M1</version>
214+
<version>3.0.0-M2</version>
215215
</plugin>
216216
<plugin>
217217
<groupId>org.apache.maven.plugins</groupId>
@@ -228,6 +228,11 @@
228228
<artifactId>maven-shade-plugin</artifactId>
229229
<version>3.2.4</version>
230230
</plugin>
231+
<plugin>
232+
<groupId>org.codehaus.mojo</groupId>
233+
<artifactId>versions-maven-plugin</artifactId>
234+
<version>2.9.0</version>
235+
</plugin>
231236
</plugins>
232237
</pluginManagement>
233238
<plugins>
@@ -283,7 +288,7 @@
283288
<plugin>
284289
<groupId>org.apache.maven.plugins</groupId>
285290
<artifactId>maven-project-info-reports-plugin</artifactId>
286-
<version>3.1.1</version>
291+
<version>3.1.2</version>
287292
<reportSets>
288293
<reportSet>
289294
<reports>
@@ -312,11 +317,11 @@
312317
</plugin>
313318

314319
<!-- Generate a list of out-dated dependencies and plugins -->
315-
<!-- http://mojo.codehaus.org/versions-maven-plugin/version-rules.html -->
320+
<!-- https://www.mojohaus.org/versions-maven-plugin/ -->
316321
<plugin>
317322
<groupId>org.codehaus.mojo</groupId>
318323
<artifactId>versions-maven-plugin</artifactId>
319-
<version>2.8.1</version>
324+
<version>2.9.0</version>
320325
<reportSets>
321326
<reportSet>
322327
<reports>
@@ -327,10 +332,9 @@
327332
</reportSet>
328333
</reportSets>
329334
<configuration>
330-
<processDependencyManagementTransitive>false</processDependencyManagementTransitive>
335+
<processDependencyManagementTransitive>true</processDependencyManagementTransitive>
331336
</configuration>
332337
</plugin>
333-
334338
</plugins>
335339
</reporting>
336340
<profiles>
@@ -354,31 +358,6 @@
354358
</build>
355359
</profile>
356360

357-
<profile>
358-
<id>h2</id>
359-
<activation>
360-
<activeByDefault>false</activeByDefault>
361-
</activation>
362-
<dependencies>
363-
<dependency>
364-
<groupId>com.h2database</groupId>
365-
<artifactId>h2</artifactId>
366-
</dependency>
367-
</dependencies>
368-
<build>
369-
<plugins>
370-
<plugin>
371-
<groupId>org.apache.maven.plugins</groupId>
372-
<artifactId>maven-surefire-plugin</artifactId>
373-
<configuration>
374-
<environmentVariables>
375-
<spring_profiles_active>h2</spring_profiles_active>
376-
</environmentVariables>
377-
</configuration>
378-
</plugin>
379-
</plugins>
380-
</build>
381-
</profile>
382361
<profile>
383362
<!-- Use this profile to allow a debugger to attach to a running Spring Boot instance -->
384363
<id>spring-boot-debug</id>

0 commit comments

Comments
 (0)