Skip to content

Commit 71a751d

Browse files
authored
Merge pull request AstechzGO#149 from ryanlarkin/major-update
Update dependencies
2 parents 02a22e6 + c19196b commit 71a751d

File tree

17 files changed

+461
-319
lines changed

17 files changed

+461
-319
lines changed

.github/workflows/snapshot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v2
17-
- name: Set up JDK 11
17+
- name: Set up JDK 17
1818
uses: actions/setup-java@v1
1919
with:
20-
java-version: 11
20+
java-version: 17
2121
- name: Grant execute permission for gradlew
2222
run: chmod +x gradlew
2323
- name: Deploy with Gradle

.idea/Luminescent.iml

Lines changed: 0 additions & 2 deletions
This file was deleted.

.idea/codeStyles/Project.xml

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries-with-intellij-classes.xml

Lines changed: 65 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Luminescent
2-
To run in IntelliJ IDEA, the Java version that is used must be JDK 11+, and the Java and Gradle plugins installed
2+
To run in IntelliJ IDEA, the Java version that is used must be JDK 17+, and the Java and Gradle plugins installed
33

44
[View and Download Latest Release](/../../releases/latest)
55

build.gradle.kts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ plugins {
55
}
66

77
buildscript {
8-
extra["lwjglVersion"] = "3.2.3"
9-
extra["jomlVersion"] = "1.9.24"
10-
extra["gsonVersion"] = "2.8.6"
8+
extra["lwjglVersion"] = "3.3.0"
9+
extra["jomlVersion"] = "1.10.3"
10+
extra["gsonVersion"] = "2.8.9"
1111
}
1212

1313
repositories {
@@ -93,17 +93,16 @@ task("copyToRoot") {
9393
task("run") {
9494
doLast {
9595
javaexec {
96-
main="-jar"
9796
args = listOf("Luminescent.jar")
9897
}
9998
}
10099
}.dependsOn("deploy")
101100

102101
tasks.compileJava {
103-
sourceCompatibility = "11"
104-
targetCompatibility = "11"
102+
sourceCompatibility = "17"
103+
targetCompatibility = "17"
105104
}
106105

107106
tasks.wrapper {
108-
gradleVersion = "6.3"
107+
gradleVersion = "7.3.3"
109108
}

gradle/wrapper/gradle-wrapper.jar

3.83 KB
Binary file not shown.

0 commit comments

Comments
 (0)