0

Updated dependencies.

This commit is contained in:
Logan Fick
2019-02-08 19:04:08 -05:00
parent 7ca3bc7379
commit 30e33a4e58
6 changed files with 18 additions and 24 deletions

View File

@@ -19,10 +19,9 @@ repositories {
}
dependencies {
implementation "com.github.RedstonerServer:CommandManager:master-SNAPSHOT"
implementation "com.github.RedstonerServer:ChatAPI:master-SNAPSHOT"
implementation "com.github.RedstonerServer:ChestAPI:master-SNAPSHOT"
implementation "com.github.RedstonerServer:CommandManager:v1"
implementation "com.github.RedstonerServer:ChatAPI:v1"
compile group: 'org.apache.logging.log4j', name: 'log4j-1.2-api', version: '2.11.1'
compileOnly 'org.spigotmc:spigot-api:1.13.2-R0.1-SNAPSHOT'
@@ -30,11 +29,11 @@ dependencies {
jar {
manifest {
attributes "Class-Path": "../lib/CommandManager.jar ../lib/ChatAPI.jar ../lib/ChestAPI.jar"
attributes "Class-Path": "../lib/CommandManager.jar ../lib/ChatAPI.jar"
}
}
task sourceJar(type: Jar, dependsOn: classes) {
classifier 'sources'
from sourceSets.main.allSource
}
}