Skip to content

Commit aad448f

Browse files
Update to kotlin 1.8.0 and gradle 7.6 (#61)
* Update to kotlin 1.8.0 and gradle 7.6 * add back language version to kotlin options * Update build.gradle.kts Co-authored-by: sschr15 <[email protected]> Co-authored-by: sschr15 <[email protected]>
1 parent 9d73999 commit aad448f

8 files changed

+35
-16
lines changed

build.gradle.kts

+17-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ plugins {
1919
alias(libs.plugins.licenser)
2020
alias(libs.plugins.git.hooks)
2121
alias(libs.plugins.dokka)
22+
alias(libs.plugins.binary.compatibility)
2223
`maven-publish`
2324
}
2425

@@ -89,7 +90,8 @@ allprojects {
8990
withType<KotlinCompile> {
9091
kotlinOptions {
9192
jvmTarget = javaVersion.toString()
92-
languageVersion = rootProject.libs.plugins.kotlin.get().version.strictVersion
93+
languageVersion =
94+
rootProject.libs.plugins.kotlin.get().version.requiredVersion.substringBeforeLast(".")
9395
}
9496
}
9597

@@ -248,6 +250,16 @@ tasks {
248250
from(dokkaHtmlMultiModule.get().outputDirectory)
249251
duplicatesStrategy = DuplicatesStrategy.FAIL
250252
}
253+
254+
/*
255+
* To update the gradle version for the project, update the gradleVersion here, the sha256sum and then run
256+
* `./gradlew wrapper -x build` or `gradle wrapper -x build` TWICE to update the gradle scripts.
257+
*/
258+
wrapper {
259+
gradleVersion = "7.6"
260+
distributionType = Wrapper.DistributionType.BIN
261+
distributionSha256Sum = "7ba68c54029790ab444b39d7e293d3236b2632631fb5f2e012bb28b4ff669e4b"
262+
}
251263
}
252264

253265
publishing {
@@ -266,3 +278,7 @@ gitHooks {
266278
// Before committing, check that licenses are all ready and the detekt checks have passed.
267279
setHooks(mapOf("pre-commit" to "checkLicenses apiCheck detekt"))
268280
}
281+
282+
apiValidation {
283+
ignoredProjects.addAll(listOf("quilt-kotlin-libraries", "core"))
284+
}

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ kotlin.incremental=true
66
kotlin.code.style=official
77

88
version=1.0.1
9-
flk_version=1.8.6
9+
flk_version=1.9.0

gradle/libs.versions.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[versions]
2-
atomic = "0.18.5"
2+
atomic = "0.19.0"
33
coroutines = "1.6.4"
44
datetime = "0.4.0"
55
dokka = "1.7.20"
6-
kotlin = "1.7.22"
6+
kotlin = "1.8.0"
77
minecraft = "1.19.2"
88
qsl = "3.0.0-beta.24+1.19.2"
99
quilt_loader = "0.17.8"
1010
quilt_mappings = "1.19.2+build.21"
1111
serialization = "1.4.1"
12-
serialization_plugin = "1.7.22" # usually same as kotlin but can lag behind
12+
serialization_plugin = "1.8.0" # usually same as kotlin but can lag behind
1313

1414
[libraries]
1515
atomic = { module = "org.jetbrains.kotlinx:atomicfu-jvm", version.ref = "atomic" }
@@ -27,11 +27,11 @@ serialization_core = { module = "org.jetbrains.kotlinx:kotlinx-serialization-cor
2727
serialization_json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json-jvm", version.ref = "serialization" }
2828

2929
[plugins]
30-
detekt = { id = "io.gitlab.arturbosch.detekt", version = "1.20.0" }
30+
detekt = { id = "io.gitlab.arturbosch.detekt", version = "1.22.0" }
3131
dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" }
3232
git_hooks = { id = "com.github.jakemarsden.git-hooks", version = "0.0.2" }
3333
kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
3434
licenser = { id = "org.quiltmc.gradle.licenser", version = "1.1.2" }
3535
quilt_loom = { id = "org.quiltmc.loom", version = "1.+" }
3636
serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "serialization_plugin" }
37-
binary_compatibility = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version = "0.11.1" }
37+
binary_compatibility = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version = "0.12.1" }

gradle/wrapper/gradle-wrapper.jar

818 Bytes
Binary file not shown.
+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
3+
distributionSha256Sum=7ba68c54029790ab444b39d7e293d3236b2632631fb5f2e012bb28b4ff669e4b
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
5+
networkTimeout=10000
46
zipStoreBase=GRADLE_USER_HOME
5-
zipStorePath=wrapper/dists
7+
zipStorePath=wrapper/dists

gradlew

+6-4
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ APP_BASE_NAME=${0##*/}
8686
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
8787

8888
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
89-
DEFAULT_JVM_OPTS='-Dfile.encoding=UTF-8 "-Xmx64m" "-Xms64m"'
89+
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
9090

9191
# Use the maximum available, or set MAX_FD != -1 to use that value.
9292
MAX_FD=maximum
@@ -127,12 +127,14 @@ if [ -n "$JAVA_HOME" ] ; then
127127
fi
128128
if [ ! -x "$JAVACMD" ] ; then
129129
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
130+
130131
Please set the JAVA_HOME variable in your environment to match the
131132
location of your Java installation."
132133
fi
133134
else
134135
JAVACMD=java
135136
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
137+
136138
Please set the JAVA_HOME variable in your environment to match the
137139
location of your Java installation."
138140
fi
@@ -142,15 +144,15 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
142144
case $MAX_FD in #(
143145
max*)
144146
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
145-
# shellcheck disable=SC3045
147+
# shellcheck disable=SC3045
146148
MAX_FD=$( ulimit -H -n ) ||
147149
warn "Could not query maximum file descriptor limit"
148150
esac
149151
case $MAX_FD in #(
150152
'' | soft) :;; #(
151153
*)
152154
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
153-
# shellcheck disable=SC3045
155+
# shellcheck disable=SC3045
154156
ulimit -n "$MAX_FD" ||
155157
warn "Could not set maximum file descriptor limit to $MAX_FD"
156158
esac
@@ -239,4 +241,4 @@ eval "set -- $(
239241
tr '\n' ' '
240242
)" '"$@"'
241243

242-
exec "$JAVACMD" "$@"
244+
exec "$JAVACMD" "$@"

gradlew.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ set APP_HOME=%DIRNAME%
3434
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
3535

3636
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
37-
set DEFAULT_JVM_OPTS=-Dfile.encoding=UTF-8 "-Xmx64m" "-Xms64m"
37+
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
3838

3939
@rem Find java.exe
4040
if defined JAVA_HOME goto findJavaFromJavaHome
@@ -89,4 +89,4 @@ exit /b %EXIT_CODE%
8989
:mainEnd
9090
if "%OS%"=="Windows_NT" endlocal
9191

92-
:omega
92+
:omega

library/build.gradle.kts

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
@Suppress("DSL_SCOPE_VIOLATION")
22
plugins {
3-
alias(libs.plugins.binary.compatibility)
43
alias(libs.plugins.serialization)
54
}
65

0 commit comments

Comments
 (0)