diff --git a/CHANGELOG.md b/CHANGELOG.md index 212a0bc..cd0cd70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,5 @@ +# v0.1.1 - Snapshot +* Updated Dependencies + # v0.1.0 - Snapshot Hello, World! diff --git a/build.gradle b/build.gradle index 981d392..f5d5c88 100644 --- a/build.gradle +++ b/build.gradle @@ -1,13 +1,13 @@ import org.apache.tools.ant.filters.ReplaceTokens plugins { - id 'org.jetbrains.kotlin.jvm' version '1.6.0' + id 'org.jetbrains.kotlin.jvm' version '1.6.10' id 'maven-publish' - id 'com.github.johnrengelman.shadow' version '7.1.0' + id 'com.github.johnrengelman.shadow' version '7.1.2' id 'org.jetbrains.dokka' version '1.6.0' } -def projectVersion = (System.getenv("VERSION") ?: '0.1.0-SNAPSHOT').replaceFirst("v", "").replace('/', '') +def projectVersion = (System.getenv("VERSION") ?: '0.1.1-SNAPSHOT').replaceFirst("v", "").replace('/', '') group 'xyz.theprogramsrc' version projectVersion @@ -23,17 +23,16 @@ repositories { maven { url 'https://oss.sonatype.org/content/repositories/releases/' } maven { url 'https://oss.sonatype.org/content/groups/public/' } maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' } - maven { url 'https://repo.codemc.org/repository/maven-public' } - maven { url 'https://repo.codemc.org/repository/nms' } - maven { url 'https://jitpack.io' } + maven { url 'https://repo.codemc.org/repository/maven-public/' } + maven { url 'https://jitpack.io/' } } dependencies { - compileOnly 'org.jetbrains.kotlin:kotlin-stdlib:1.6.0' + compileOnly 'org.jetbrains.kotlin:kotlin-stdlib:1.6.10' compileOnly 'org.spigotmc:spigot-api:1.18.1-R0.1-SNAPSHOT' compileOnly 'net.md-5:bungeecord-api:1.18-R0.1-SNAPSHOT' - compileOnly 'xyz.theprogramsrc:simplecoreapi:0.1.9-SNAPSHOT' - compileOnly 'xyz.theprogramsrc:filesmodule:0.1.0-SNAPSHOT' + compileOnly 'xyz.theprogramsrc:simplecoreapi:0.1.12-SNAPSHOT' + compileOnly 'xyz.theprogramsrc:filesmodule:0.1.1-SNAPSHOT' testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2' }