Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"jdkDistro": "oracle"
},
"ghcr.io/devcontainers/features/azure-cli:1": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/docker-in-docker:4": {},
"ghcr.io/devcontainers/features/github-cli:1": {}
},

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/maven-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
java: [ '17' ]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Set up JDK ${{matrix.java}}
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: ${{matrix.java}}
distribution: 'adopt'
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use a lightweight JDK image for running the application
FROM eclipse-temurin:17.0.13_11-jdk-alpine
FROM eclipse-temurin:25.0.3_9-jdk-alpine
WORKDIR /app

# Copy the pre-built JAR file into the container
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.5'
id 'org.springframework.boot' version '4.1.0'
id 'io.spring.dependency-management' version '1.1.6'
id 'org.graalvm.buildtools.native' version '0.10.3'
id 'org.cyclonedx.bom' version '1.10.0'
id 'org.graalvm.buildtools.native' version '1.1.6'
id 'org.cyclonedx.bom' version '3.3.0'
id 'io.spring.javaformat' version '0.0.43'
id "io.spring.nohttp" version "0.0.11"
}
Expand All @@ -25,7 +25,7 @@ repositories {
mavenCentral()
}

ext.checkstyleVersion = "10.19.0"
ext.checkstyleVersion = "13.9.0"
ext.springJavaformatCheckstyleVersion = "0.0.43"
ext.webjarsFontawesomeVersion = "4.7.0"
ext.webjarsBootstrapVersion = "5.3.3"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
profiles:
- mysql
postgres:
image: postgres:17.0
image: postgres:18.4
ports:
- "5432:5432"
environment:
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.5</version>
<version>4.1.0</version>
<relativePath/>
</parent>
<name>petclinic</name>
Expand All @@ -28,7 +28,7 @@
<webjars-bootstrap.version>5.3.3</webjars-bootstrap.version>
<webjars-font-awesome.version>4.7.0</webjars-font-awesome.version>

<checkstyle.version>10.19.0</checkstyle.version>
<checkstyle.version>13.9.0</checkstyle.version>
<jacoco.version>0.8.12</jacoco.version>
<libsass.version>0.3.1</libsass.version>
<lifecycle-mapping>1.0.0</lifecycle-mapping>
Expand Down
Loading