Skip to content

Commit

Permalink
Merge pull request #111 from dbmdz/spring
Browse files Browse the repository at this point in the history
Bump Spring Boot to 3.1.6
  • Loading branch information
schmika authored Dec 7, 2023
2 parents 891a608 + 21153f7 commit 267fc81
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 17]
java: [17]
steps:
- uses: actions/checkout@v3
- name: Set up JDK
Expand All @@ -34,12 +34,12 @@ jobs:
needs: build
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
check-latest: true
distribution: temurin
java-version: 11
java-version: 17
server-id: ossrh-snapshots
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@

<properties>
<javadoc.basepath>pathfinder</javadoc.basepath>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<version.assertj-core>3.24.2</version.assertj-core>
Expand Down
8 changes: 7 additions & 1 deletion spring-boot-pathfinder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<name>Pathfinder: Spring Boot Bindings</name>
<properties>
<version.spring-boot>2.7.5</version.spring-boot>
<version.spring-boot>3.1.6</version.spring-boot>
<version.javax.annotation-api>1.3.2</version.javax.annotation-api>
</properties>

Expand All @@ -37,6 +37,12 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>${version.spring-boot}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@

import java.util.List;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.ConstructorBinding;
import org.springframework.lang.Nullable;

/** Spring properties file to load Pathfinder configuration <code>application.yml</code>. */
@ConstructorBinding
@ConfigurationProperties(prefix = "pathfinder")
public class PathfinderProperties {

Expand Down

0 comments on commit 267fc81

Please sign in to comment.