From d95fe9ab23f4ce19ed1a17b13f995aceefd14fd8 Mon Sep 17 00:00:00 2001 From: Pauline Date: Sat, 27 Apr 2024 19:59:05 -0400 Subject: ♻️ refactor(plugin): refactor cc -> org and update deps, intellij MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle.kts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'build.gradle.kts') diff --git a/build.gradle.kts b/build.gradle.kts index 8668e3e..da0ea43 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,17 +4,23 @@ plugins { id("java") alias(libs.plugins.kotlin) alias(libs.plugins.intellij) + alias(libs.plugins.kotlinter) } group = properties("pluginGroup").get() version = properties("pluginVersion").get() repositories { - maven("https://repo.polyfrost.cc/releases") + maven("https://repo.polyfrost.org/releases") } kotlin { - jvmToolchain(17) + jvmToolchain(21) +} + +kotlinter { + ignoreFailures = false + reporters = arrayOf("checkstyle", "plain") } intellij { -- cgit