Skip to content

Commit ef012f8

Browse files
jimisolaclaude
andauthored
chore(build): upgrade Java baseline to 17 (#17)
Raises sourceCompatibility and targetCompatibility from Java 8 to Java 17. Gradle 9 already requires Java 17 to run, so Java 8 was never a realistic consumer constraint. Updates README requirements accordingly and removes the Credits section. Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 134c46c commit ef012f8

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

README.adoc

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,14 +139,11 @@ gradle assembleRequirements
139139

140140
== Requirements
141141

142-
* Gradle 6.0+ (tested with Gradle 9.3)
143-
* Java 8+
142+
* Gradle 9.0+
143+
* Java 17+
144144
* A `requirements.yml` file in the dataset directory (default: `./reqstool/`)
145145

146146
== License
147147

148148
MIT License - see link:LICENSE[LICENSE] file for details
149149

150-
== Credits
151-
152-
Based on link:https://github.com/Luftfartsverket/reqstool-java-maven-plugin[reqstool-java-maven-plugin] by Luftfartsverket (LFV).

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ group = 'se.lfv.reqstool'
1010
version = '0.1.0'
1111

1212
java {
13-
sourceCompatibility = JavaVersion.VERSION_1_8
14-
targetCompatibility = JavaVersion.VERSION_1_8
13+
sourceCompatibility = JavaVersion.VERSION_17
14+
targetCompatibility = JavaVersion.VERSION_17
1515
}
1616

1717
repositories {

0 commit comments

Comments
 (0)