|
|
|
group 'de.exlll'
|
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
repositories { mavenCentral() }
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
|
|
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
|
|
|
|
testCompile group: 'com.google.jimfs', name: 'jimfs', version: '1.1'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
project(':configlib-core') {
|
|
|
|
dependencies {
|
|
|
|
compile group: 'org.yaml', name: 'snakeyaml', version: '1.17'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
project(':configlib-bukkit') {
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
compile project(':configlib-core')
|
|
|
|
compile group: 'org.bukkit', name: 'bukkit', version: '1.11.2-R0.1-SNAPSHOT'
|
|
|
|
}
|
|
|
|
jar {
|
|
|
|
baseName = 'ConfigLib.bukkit'
|
|
|
|
from {
|
|
|
|
project(':configlib-core').sourceSets.main.output
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
project(':configlib-bungee') {
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url 'https://oss.sonatype.org/content/repositories/snapshots'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
compile project(':configlib-core')
|
|
|
|
compile group: 'net.md-5', name: 'bungeecord-api', version: '1.10-SNAPSHOT'
|
|
|
|
}
|
|
|
|
jar {
|
|
|
|
baseName = 'ConfigLib.bungee'
|
|
|
|
from {
|
|
|
|
project(':configlib-core').sourceSets.main.output
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|