0
This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
ModuleLoader/build.gradle

41 lines
1.1 KiB
Groovy
Raw Normal View History

buildscript {
repositories {
jcenter()
}
dependencies {
classpath "com.github.jengelman.gradle.plugins:shadow:4.0.2"
}
}
apply plugin: "com.github.johnrengelman.shadow"
apply plugin: "java"
repositories {
jcenter()
maven { url "https://jitpack.io" }
maven { url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
dependencies {
implementation "com.github.RedstonerServer:CommandManager:master-SNAPSHOT"
implementation "com.github.RedstonerServer:ChatAPI:master-SNAPSHOT"
implementation "com.github.RedstonerServer:ChestAPI:master-SNAPSHOT"
2019-02-08 09:30:00 -05:00
compile group: 'org.apache.logging.log4j', name: 'log4j-1.2-api', version: '2.11.1'
2018-11-13 23:11:34 +01:00
compileOnly 'org.spigotmc:spigot-api:1.13.2-R0.1-SNAPSHOT'
}
jar {
manifest {
attributes "Class-Path": "../lib/CommandManager.jar ../lib/ChatAPI.jar ../lib/ChestAPI.jar"
}
2018-11-10 21:26:57 +01:00
}
task sourceJar(type: Jar, dependsOn: classes) {
classifier 'sources'
from sourceSets.main.allSource
2018-11-13 23:11:34 +01:00
}