From 7b1c03ff69a2947ffed1d265199132b1c0219be6 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sun, 27 Jun 2021 18:44:37 +0200 Subject: [PATCH] Fix CI pipeline deprecation errors --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77f4940..0b7b1c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: curl $jar_url > spigot-shaded.jar find -name "*.java" > sources curl -s https://github.com/GabrielTofvesson/SpigotWizCompat/releases | grep "latest/SpigotWizCompat-.*jar" | cut -d : -f 2,3 | sed "s/[^\"]*\"\\([^\"]*\\)\".*/https:\\/\\/github.com\\/\\1/g" | wget -O SpigotWizCompat.jar -qi - - javac -cp . @sources -d build + javac -Xlint:deprecation -classpath "spigot-shaded.jar:SpigotWizCompat.jar" @sources -d build cp res/* build rm sources cd build