Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoDog896 committed Feb 19, 2022
2 parents 9db1353 + 963cc10 commit b9c76d7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gradle.yml
Expand Up @@ -17,10 +17,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: 11
java-version: 17
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prerelease.yml
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:
# ...
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: 11
java-version: 17
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Expand Up @@ -5,7 +5,7 @@ plugins {
// Apply the Kotlin JVM plugin to add support for Kotlin.
id("org.jetbrains.kotlin.jvm") version "1.6.0"
// Kotlinx serialization for any data format
kotlin("plugin.serialization") version "1.6.0"
kotlin("plugin.serialization") version "1.6.10"
// Shade the plugin
id("com.github.johnrengelman.shadow") version "7.0.0"
// Allow publishing
Expand All @@ -14,7 +14,7 @@ plugins {
// Apply the application plugin to add support for building a jar
java
// Dokka documentation w/ kotlin
id("org.jetbrains.dokka") version "1.6.0"
id("org.jetbrains.dokka") version "1.6.10"
}

repositories {
Expand All @@ -29,7 +29,7 @@ repositories {
maven(url = "https://repo.velocitypowered.com/snapshots/")
}

val graalVersion = "21.3.0"
val graalVersion = "22.0.0.2"

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

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

// Get KStom
compileOnly("com.github.Project-Cepi:KStom:f97d90d959")
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit b9c76d7

Please sign in to comment.