Skip to content

Commit

Permalink
New version 1.4.0, replaced bstats dependency with a local compiled j…
Browse files Browse the repository at this point in the history
…ar because the maven repo doesn't seem to be online
  • Loading branch information
randombyte-developer committed May 3, 2020
1 parent 3ae287a commit 26f27aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ plugins {
}

group "de.randombyte"
version "1.3.1"
version "1.4.0"

repositories {
jcenter()
maven { url "https://repo.spongepowered.org/maven/" }
maven { url "http://repo.bstats.org/content/repositories/releases" }
// the repo seems to be offline, instead use a locally compiled build
// maven { url "http://repo.bstats.org/content/repositories/releases" }
flatDir { dirs "libs" }
maven { url "https://jitpack.io" }
}

Expand All @@ -30,7 +32,7 @@ dependencies {
kapt "org.spongepowered:spongeapi:7.1.0"
compile "com.github.randombyte-developer:PlaceholderAPI:v4.5.1"
compile "com.github.randombyte-developer:byte-items:v2.2.6"
shadow "org.bstats:bstats-sponge:1.2"
shadow name: "bstats-sponge-1.2"
}

jar.enabled = false
Expand Down
Binary file added libs/bstats-sponge-1.2.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/kotlin/de/randombyte/ktskript/KtSkriptPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class KtSkriptPlugin @Inject constructor(
companion object {
const val ID = "kt-skript"
const val NAME = "KtSkript"
const val VERSION = "1.3.1"
const val VERSION = "1.4.0"
const val AUTHOR = "RandomByte"

const val DEFAULT_IMPORTS_FILE_NAME = "default.imports"
Expand Down

0 comments on commit 26f27aa

Please sign in to comment.