Skip to content

Commit 515c6ec

Browse files
authored
Update to Java 17 (#83)
1 parent 28865b8 commit 515c6ec

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<attribute name="gradle_used_by_scope" value="main,test"/>
77
</attributes>
88
</classpathentry>
9-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/>
9+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17/"/>
1010
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
1111
<classpathentry kind="output" path="bin/default"/>
1212
</classpath>

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build
33
on: [push, fork, pull_request]
44

55
env:
6-
JAVA_VERSION: 1.11
6+
JAVA_VERSION: 1.17
77
GRADLE_VERSION: 8.4
88

99
jobs:

.github/workflows/build_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010
id-token: write
1111

1212
env:
13-
JAVA_VERSION: 1.11
13+
JAVA_VERSION: 1.17
1414
GRADLE_VERSION: 8.4
1515

1616
jobs:

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
language: java
22
jdk:
3-
- openjdk11
3+
- openjdk17

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ plugins {
1515
group = 'com.stuypulse'
1616

1717
java {
18-
sourceCompatibility = JavaVersion.VERSION_11
19-
targetCompatibility = JavaVersion.VERSION_11
18+
sourceCompatibility = JavaVersion.VERSION_17
19+
targetCompatibility = JavaVersion.VERSION_17
2020
}
2121

2222
sourceSets {

0 commit comments

Comments
 (0)