Skip to content

Commit

Permalink
Merge pull request #1 from TheProgramSrc/fix/update_dependencies
Browse files Browse the repository at this point in the history
Updated Dependencies
  • Loading branch information
Im-Fran authored Jan 4, 2022
2 parents 3af986b + ee7d5be commit e14d087
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# v0.1.1 - Snapshot
* Updated Dependencies

# v0.1.0 - Snapshot
Hello, World!
17 changes: 8 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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'
}
Expand Down

0 comments on commit e14d087

Please sign in to comment.