Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ '11', '17', '21' ]
java: [ '17', '21', '25' ]
steps:
- name: Checkout Code
uses: actions/checkout@v3
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: 21
java-version: 25

- name: Setup GPG
run: .github/workflows/steps/setup-gpg.sh
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ For example, to ensure that maven doesn't pick different versions of logback-cor

| logstash-logback-encoder | Minimum Java Version supported |
|--------------------------|--------------------------------|
| 9.x | 17 |
| 8.x | 11 |
| 7.x | 8 |
| 6.x | 8 |
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
<version>8.2-SNAPSHOT</version>
<version>9.0-SNAPSHOT</version>

<name>Logstash Logback Encoder</name>
<description>Provides logback encoders, layouts, and appenders to log in JSON and other formats supported by Jackson</description>
Expand All @@ -19,7 +19,7 @@
</scm>

<properties>
<java.version>11</java.version>
<java.version>17</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<!-- runtime dependencies -->
Expand Down Expand Up @@ -59,7 +59,7 @@
<nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version>
<xml-maven-plugin.version>1.1.0</xml-maven-plugin.version>

<checkstyle.version>10.23.0</checkstyle.version>
<checkstyle.version>12.0.0</checkstyle.version>

<!-- maven-javadoc-plugin configuration -->
<maven.javadoc.failOnError>true</maven.javadoc.failOnError>
Expand Down
Loading