Skip to content

Commit da2dcc2

Browse files
committed
chore(deps): update deps for initial 1.20 support
1 parent bb02220 commit da2dcc2

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/gradle.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
# Steps represent a sequence of tasks that will be executed as part of the job
2121
steps:
2222
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
23-
- uses: actions/checkout@v2
24-
- name: Set up JDK 1.8
25-
uses: actions/setup-java@v1
23+
- uses: actions/checkout@v3
24+
- uses: actions/setup-java@v3
2625
with:
27-
java-version: 1.8
26+
distribution: 'temurin'
27+
java-version: '17'
2828
- name: Gradle Test Build
2929
run: ./gradlew clean shadowJar

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import org.apache.tools.ant.filters.ReplaceTokens
22

33
plugins {
4-
id 'org.jetbrains.kotlin.jvm' version '1.8.10'
4+
id 'org.jetbrains.kotlin.jvm' version '1.8.22'
55
id 'com.github.johnrengelman.shadow' version '7.1.2' apply false
6-
id "com.github.ben-manes.versions" version "0.46.0"
6+
id "com.github.ben-manes.versions" version "0.47.0"
77
}
88

99
allprojects {
@@ -28,7 +28,7 @@ allprojects {
2828
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
2929

3030
// spigot
31-
compileOnly "org.spigotmc:spigot-api:1.19.4-R0.1-SNAPSHOT"
31+
compileOnly "org.spigotmc:spigot-api:1.20-R0.1-SNAPSHOT"
3232
}
3333

3434
sourceCompatibility = JavaVersion.VERSION_1_8
@@ -77,15 +77,15 @@ dependencies {
7777
implementation "co.aikar:acf-paper:0.5.1-SNAPSHOT"
7878

7979
// Support for materials across all versions
80-
implementation 'com.github.cryptomorin:XSeries:9.3.1'
80+
implementation 'com.github.cryptomorin:XSeries:9.4.0'
8181

8282
// bstats
83-
implementation 'org.bstats:bstats-bukkit:3.0.1'
83+
implementation 'org.bstats:bstats-bukkit:3.0.2'
8484

8585
// json stuff
8686
implementation 'net.kyori:adventure-platform-bukkit:4.3.0'
87-
implementation 'net.kyori:adventure-api:4.13.0'
88-
implementation 'net.kyori:adventure-text-minimessage:4.13.0'
87+
implementation 'net.kyori:adventure-api:4.14.0'
88+
implementation 'net.kyori:adventure-text-minimessage:4.14.0'
8989

9090
implementation project(":version")
9191
implementation project(":version_old")

0 commit comments

Comments
 (0)