Skip to content
This repository was archived by the owner on Sep 2, 2024. It is now read-only.

Commit b9c76d7

Browse files
committed
2 parents 9db1353 + 963cc10 commit b9c76d7

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/gradle.yml

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

1818
steps:
1919
- uses: actions/checkout@v2
20-
- name: Set up JDK 11
20+
- name: Set up JDK 17
2121
uses: actions/setup-java@v2
2222
with:
23-
java-version: 11
23+
java-version: 17
2424
distribution: 'adopt'
2525
- name: Grant execute permission for gradlew
2626
run: chmod +x gradlew

.github/workflows/prerelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
steps:
1414
# ...
1515
- uses: actions/checkout@v2
16-
- name: Set up JDK 11
16+
- name: Set up JDK 17
1717
uses: actions/setup-java@v2
1818
with:
19-
java-version: 11
19+
java-version: 17
2020
distribution: 'adopt'
2121
- name: Grant execute permission for gradlew
2222
run: chmod +x gradlew

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
// Apply the Kotlin JVM plugin to add support for Kotlin.
66
id("org.jetbrains.kotlin.jvm") version "1.6.0"
77
// Kotlinx serialization for any data format
8-
kotlin("plugin.serialization") version "1.6.0"
8+
kotlin("plugin.serialization") version "1.6.10"
99
// Shade the plugin
1010
id("com.github.johnrengelman.shadow") version "7.0.0"
1111
// Allow publishing
@@ -14,7 +14,7 @@ plugins {
1414
// Apply the application plugin to add support for building a jar
1515
java
1616
// Dokka documentation w/ kotlin
17-
id("org.jetbrains.dokka") version "1.6.0"
17+
id("org.jetbrains.dokka") version "1.6.10"
1818
}
1919

2020
repositories {
@@ -29,7 +29,7 @@ repositories {
2929
maven(url = "https://repo.velocitypowered.com/snapshots/")
3030
}
3131

32-
val graalVersion = "21.3.0"
32+
val graalVersion = "22.0.0.2"
3333

3434
dependencies {
3535
// Align versions of all Kotlin components
@@ -45,7 +45,7 @@ dependencies {
4545
compileOnly("com.github.Minestom:Minestom:4ee5cbe424")
4646

4747
// import kotlinx serialization
48-
compileOnly("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.1")
48+
compileOnly("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2")
4949

5050
// Get KStom
5151
compileOnly("com.github.Project-Cepi:KStom:f97d90d959")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)