Skip to content

Commit

Permalink
drop java 11/spring boot 2 supports, upgrade to spring boot 3
Browse files Browse the repository at this point in the history
  • Loading branch information
debugrammer committed Jul 5, 2024
1 parent cbf3c34 commit a059a27
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
java-version: [11, 17, 21]
java-version: [17, 21]

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '2.7.18'
id 'org.springframework.boot' version '3.3.1'
id 'io.spring.dependency-management' version '1.1.5'
id 'java'
}
Expand All @@ -10,8 +10,8 @@ repositories {

subprojects {
group = 'com.joonsang.graylog'
version = '2.0.6'
sourceCompatibility = '11'
version = '3.0.0'
sourceCompatibility = '17'

repositories {
mavenCentral()
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
com.joonsang.graylog.sdk.spring.starter.autoconfigure.GraylogSdkAutoConfiguration

0 comments on commit a059a27

Please sign in to comment.