Skip to content

Commit fb53a0e

Browse files
driesvageirsagberg
authored andcommitted
chore: dependency/plugin updates and config metadata
* Bump plugins * Bump Spring boot and add Spring Boot 3.5 to the test matrix * Add metadata for the recently introduced config property in order it appears in autocomplete of an IDE
1 parent 2d811f1 commit fb53a0e

File tree

3 files changed

+19
-10
lines changed

3 files changed

+19
-10
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
spring-boot: [ '3.3.8', '3.4.2' ]
11+
spring-boot: [ '3.3.13', '3.4.7', '3.5.3' ]
1212

1313
steps:
1414
- name: Checkout repo
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"properties": [
3+
{
4+
"name": "db-scheduler-ui.context-path",
5+
"type": "java.lang.String",
6+
"description": "Add a prefix for the UI context path."
7+
}
8+
]
9+
}

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070

7171
<properties>
7272
<maven.compiler.release>17</maven.compiler.release>
73-
<spring-boot.version>3.4.2</spring-boot.version>
73+
<spring-boot.version>3.4.7</spring-boot.version>
7474
<db-scheduler.version>15.6.0</db-scheduler.version>
7575
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
7676
</properties>
@@ -80,7 +80,7 @@
8080
<dependency>
8181
<groupId>org.junit</groupId>
8282
<artifactId>junit-bom</artifactId>
83-
<version>5.11.4</version>
83+
<version>5.12.2</version>
8484
<type>pom</type>
8585
<scope>import</scope>
8686
</dependency>
@@ -118,17 +118,17 @@
118118
<plugins>
119119
<plugin>
120120
<artifactId>maven-surefire-plugin</artifactId>
121-
<version>3.5.2</version>
121+
<version>3.5.3</version>
122122
</plugin>
123123
<plugin>
124124
<groupId>org.apache.maven.plugins</groupId>
125125
<artifactId>maven-deploy-plugin</artifactId>
126-
<version>3.1.3</version>
126+
<version>3.1.4</version>
127127
</plugin>
128128
<plugin>
129129
<groupId>org.apache.maven.plugins</groupId>
130130
<artifactId>maven-compiler-plugin</artifactId>
131-
<version>3.13.0</version>
131+
<version>3.14.0</version>
132132
<configuration>
133133
<parameters>true</parameters>
134134
</configuration>
@@ -168,7 +168,7 @@
168168
<plugin>
169169
<groupId>com.diffplug.spotless</groupId>
170170
<artifactId>spotless-maven-plugin</artifactId>
171-
<version>2.43.0</version>
171+
<version>2.44.3</version>
172172
<configuration>
173173
<java>
174174
<includes>
@@ -264,7 +264,7 @@
264264
<plugin>
265265
<groupId>com.mycila</groupId>
266266
<artifactId>license-maven-plugin</artifactId>
267-
<version>4.6</version>
267+
<version>5.0.0</version>
268268
<configuration>
269269
<mapping>
270270
<ts>SLASHSTAR_STYLE</ts>
@@ -299,7 +299,7 @@
299299
<plugin>
300300
<groupId>org.apache.maven.plugins</groupId>
301301
<artifactId>maven-clean-plugin</artifactId>
302-
<version>3.4.0</version>
302+
<version>3.5.0</version>
303303
<configuration>
304304
<filesets>
305305
<fileset>
@@ -313,7 +313,7 @@
313313
<plugin>
314314
<groupId>org.codehaus.mojo</groupId>
315315
<artifactId>exec-maven-plugin</artifactId>
316-
<version>3.5.0</version>
316+
<version>3.5.1</version>
317317
<inherited>false</inherited>
318318
<executions>
319319
<execution>

0 commit comments

Comments
 (0)