Skip to content
This repository has been archived by the owner on Apr 27, 2021. It is now read-only.

Commit

Permalink
依存関係のバージョンを更新
Browse files Browse the repository at this point in the history
kotlin 1.4.32
jda 4.2.1_254
ktlint 0.41.0
  • Loading branch information
sya-ri committed Apr 3, 2021
1 parent 6079b47 commit fadd983
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import net.minecrell.pluginyml.bukkit.BukkitPluginDescription
import org.jlleitschuh.gradle.ktlint.KtlintExtension

plugins {
kotlin("jvm") version "1.4.30"
kotlin("jvm") version "1.4.32"
id("org.jlleitschuh.gradle.ktlint") version "10.0.0"
id("com.github.johnrengelman.shadow") version "6.1.0"
id("net.minecrell.plugin-yml.bukkit") version "0.3.0"
Expand All @@ -14,7 +14,7 @@ version = "1.0.4"
repositories {
mavenCentral()
maven(url = "https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
jcenter()
maven(url = "https://m2.dv8tion.net/releases")
}

val shadowImplementation: Configuration by configurations.creating
Expand All @@ -26,16 +26,17 @@ dependencies {
shadowImplementation("com.github.sya-ri:EasySpigotAPI:2.3.0") {
exclude(group = "org.spigotmc", module = "spigot-api")
}
shadowImplementation("net.dv8tion:JDA:4.2.0_228")
shadowImplementation("net.dv8tion:JDA:4.2.1_253")
}

configure<KtlintExtension> {
version.set("0.40.0")
version.set("0.41.0")
}

tasks.withType<ShadowJar> {
configurations = listOf(shadowImplementation)
archiveClassifier.set("")
minimize()
}

configure<BukkitPluginDescription> {
Expand Down

0 comments on commit fadd983

Please sign in to comment.