Compare commits

..

No commits in common. "0ea1c8b875a237c770dd80aeec7375dfc5c6530b" and "a9dd1b05fa35c6c1729ff0222b9534a4ea2e92e8" have entirely different histories.

3 changed files with 8 additions and 8 deletions

View file

@ -8,7 +8,7 @@ jobs:
strategy: strategy:
matrix: matrix:
java-version: [17, 21, 22] java-version: [ 17, 20 ]
steps: steps:
- name: Checkout source repository - name: Checkout source repository
@ -19,7 +19,7 @@ jobs:
- name: Set up JDK ${{ matrix.java-version }} - name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v3 uses: actions/setup-java@v3
with: with:
distribution: "temurin" distribution: 'temurin'
java-version: ${{ matrix.java-version }} java-version: ${{ matrix.java-version }}
- name: Run tests - name: Run tests

Binary file not shown.

View file

@ -24,15 +24,15 @@ public class ApplicationBuild extends WebProject {
repositories = List.of(MAVEN_CENTRAL); repositories = List.of(MAVEN_CENTRAL);
scope(compile) scope(compile)
.include(dependency("org.springframework.boot:spring-boot-starter:3.2.4")) .include(dependency("org.springframework.boot:spring-boot-starter:3.2.3"))
.include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.2.4")) .include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.2.3"))
.include(dependency("org.springframework.boot:spring-boot-starter-web:3.2.4")); .include(dependency("org.springframework.boot:spring-boot-starter-web:3.2.3"));
scope(test) scope(test)
.include(dependency("org.springframework.boot:spring-boot-starter-test:3.2.4")) .include(dependency("org.springframework.boot:spring-boot-starter-test:3.2.3"))
.include(dependency("org.junit.jupiter:junit-jupiter:5.10.2")) .include(dependency("org.junit.jupiter:junit-jupiter:5.10.2"))
.include(dependency("org.junit.platform:junit-platform-console-standalone:1.10.2")); .include(dependency("org.junit.platform:junit-platform-console-standalone:1.10.2"));
scope(standalone) scope(standalone)
.include(dependency("org.springframework.boot:spring-boot-loader:3.2.4")); .include(dependency("org.springframework.boot:spring-boot-loader:3.2.3"));
} }
public static void main(String[] args) { public static void main(String[] args) {