Skip to content

Commit

Permalink
Fixed a bug with launching the plugin.
Browse files Browse the repository at this point in the history
Code cleanup.
  • Loading branch information
imDMK committed Aug 20, 2023
1 parent 4517fd8 commit 6a246e7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
plugins {
id("com.github.johnrengelman.shadow") version "8.1.1"
id("net.minecrell.plugin-yml.bukkit") version "0.6.0"
id 'checkstyle'
id 'java-library'
id("checkstyle")
id("java-library")
}

group = 'me.dmk.automessage'
version = '1.0.0-SNAPSHOT'
group = "com.github.imdmk.automessage"
version = "1.0.0-SNAPSHOT"

compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
Expand All @@ -27,7 +27,6 @@ repositories {

dependencies {
compileOnly("org.spigotmc:spigot-api:1.20.1-R0.1-SNAPSHOT")
compileOnly("org.bstats:bstats-bukkit:3.0.2")

implementation("eu.okaeri:okaeri-configs-yaml-bukkit:5.0.0-beta.5")
implementation("eu.okaeri:okaeri-configs-serdes-commons:5.0.0-beta.5")
Expand All @@ -39,6 +38,7 @@ dependencies {
implementation("dev.rollczi.litecommands:bukkit-adventure:2.8.8")

implementation("com.eternalcode:gitcheck:1.0.0")
implementation("org.bstats:bstats-bukkit:3.0.2")

testImplementation platform("org.junit:junit-bom:5.9.1")
testImplementation("org.junit.jupiter:junit-jupiter")
Expand Down

0 comments on commit 6a246e7

Please sign in to comment.