Skip to content

Commit 6d9125c

Browse files
Update to current versions
Signed-off-by: Patrick Baumgartner <contact@patbaumgartner.com>
1 parent 30aab0a commit 6d9125c

11 files changed

Lines changed: 119 additions & 55 deletions

File tree

.gitattributes

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
mvnw text eol=lf
1+
/mvnw text eol=lf
2+
*.cmd text eol=crlf
23
*.java text eol=lf
34

45
/gradlew text eol=lf
Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
# Licensed to the Apache Software Foundation (ASF) under one
2-
# or more contributor license agreements. See the NOTICE file
3-
# distributed with this work for additional information
4-
# regarding copyright ownership. The ASF licenses this file
5-
# to you under the Apache License, Version 2.0 (the
6-
# "License"); you may not use this file except in compliance
7-
# with the License. You may obtain a copy of the License at
8-
#
9-
# https://www.apache.org/licenses/LICENSE-2.0
10-
#
11-
# Unless required by applicable law or agreed to in writing,
12-
# software distributed under the License is distributed on an
13-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14-
# KIND, either express or implied. See the License for the
15-
# specific language governing permissions and limitations
16-
# under the License.
17-
wrapperVersion=3.3.2
1+
wrapperVersion=3.3.4
182
distributionType=only-script
19-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10/apache-maven-3.9.10-bin.zip
3+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.11/apache-maven-3.9.11-bin.zip

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ docker run -e MYSQL_USER=petclinic -e MYSQL_PASSWORD=petclinic -e MYSQL_ROOT_PAS
6060
or
6161

6262
```bash
63-
docker run -e POSTGRES_USER=petclinic -e POSTGRES_PASSWORD=petclinic -e POSTGRES_DB=petclinic -p 5432:5432 postgres:17.5
63+
docker run -e POSTGRES_USER=petclinic -e POSTGRES_PASSWORD=petclinic -e POSTGRES_DB=petclinic -p 5432:5432 postgres:18.0
6464
```
6565

6666
Further documentation is provided for [MySQL](https://github.com/spring-projects/spring-petclinic/blob/main/src/main/resources/db/mysql/petclinic_db_setup_mysql.txt)

build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
plugins {
22
id 'java'
33
id 'checkstyle'
4-
id 'org.springframework.boot' version '3.5.0'
4+
id 'org.springframework.boot' version '3.5.6'
55
id 'io.spring.dependency-management' version '1.1.7'
6-
id 'org.graalvm.buildtools.native' version '0.10.6'
7-
id 'org.cyclonedx.bom' version '2.3.1'
8-
id 'io.spring.javaformat' version '0.0.46'
6+
id 'org.graalvm.buildtools.native' version '0.11.1'
7+
id 'org.cyclonedx.bom' version '3.0.0'
8+
id 'io.spring.javaformat' version '0.0.47'
99
id "io.spring.nohttp" version "0.0.11"
1010
}
1111

@@ -24,11 +24,11 @@ repositories {
2424
mavenCentral()
2525
}
2626

27-
ext.checkstyleVersion = "10.25.0"
28-
ext.springJavaformatCheckstyleVersion = "0.0.46"
29-
ext.webjarsLocatorLiteVersion = "1.1.0"
27+
ext.checkstyleVersion = "11.1.0"
28+
ext.springJavaformatCheckstyleVersion = "0.0.47"
29+
ext.webjarsLocatorLiteVersion = "1.1.1"
3030
ext.webjarsFontawesomeVersion = "4.7.0"
31-
ext.webjarsBootstrapVersion = "5.3.6"
31+
ext.webjarsBootstrapVersion = "5.3.8"
3232

3333
dependencies {
3434
implementation 'org.springframework.boot:spring-boot-starter-cache'

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
mysql:
3-
image: mysql:9.2
3+
image: mysql:9.4
44
ports:
55
- "3306:3306"
66
environment:
@@ -12,7 +12,7 @@ services:
1212
volumes:
1313
- "./conf.d:/etc/mysql/conf.d:ro"
1414
postgres:
15-
image: postgres:17.5
15+
image: postgres:18.0
1616
ports:
1717
- "5432:5432"
1818
environment:

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=ed1a8d686605fd7c23bdf62c7fc7add1c5b23b2bbc3721e661934ef4a4911d7c
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
54
networkTimeout=10000
65
validateDistributionUrl=true
76
zipStoreBase=GRADLE_USER_HOME

k8s/db.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ spec:
4141
app: demo-db
4242
spec:
4343
containers:
44-
- image: postgres:17.5
44+
- image: postgres:18.0
4545
name: postgresql
4646
env:
4747
- name: POSTGRES_USER

mvnw

Lines changed: 44 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mvnw.cmd

Lines changed: 48 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 5 additions & 5 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>3.5.0</version>
8+
<version>3.5.6</version>
99
<relativePath></relativePath>
1010
</parent>
1111

@@ -25,17 +25,17 @@
2525
<project.build.outputTimestamp>2024-11-28T14:37:52Z</project.build.outputTimestamp>
2626

2727
<!-- Web dependencies -->
28-
<webjars-locator.version>1.1.0</webjars-locator.version>
29-
<webjars-bootstrap.version>5.3.6</webjars-bootstrap.version>
28+
<webjars-locator.version>1.1.1</webjars-locator.version>
29+
<webjars-bootstrap.version>5.3.8</webjars-bootstrap.version>
3030
<webjars-font-awesome.version>4.7.0</webjars-font-awesome.version>
3131

32-
<checkstyle.version>10.25.0</checkstyle.version>
32+
<checkstyle.version>11.1.0</checkstyle.version>
3333
<jacoco.version>0.8.13</jacoco.version>
3434
<libsass.version>0.3.4</libsass.version>
3535
<lifecycle-mapping>1.0.0</lifecycle-mapping>
3636
<maven-checkstyle.version>3.6.0</maven-checkstyle.version>
3737
<nohttp-checkstyle.version>0.0.11</nohttp-checkstyle.version>
38-
<spring-format.version>0.0.46</spring-format.version>
38+
<spring-format.version>0.0.47</spring-format.version>
3939

4040
</properties>
4141

0 commit comments

Comments
 (0)