2018-07-31 22:12:41 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'com.github.johnrengelman.shadow' version '2.0.4'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile 'com.google.code.gson:gson:2.8.5'
|
2018-08-01 06:20:39 +02:00
|
|
|
compile "com.google.guava:guava:${guavaVersion}"
|
2018-08-12 23:19:02 +02:00
|
|
|
compile 'net.kyori:text:1.12-1.6.4'
|
2018-07-31 22:12:41 +02:00
|
|
|
compile 'com.moandjiezana.toml:toml4j:0.7.2'
|
|
|
|
testCompile "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
|
|
|
|
testCompile "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
|
|
|
|
}
|
|
|
|
|
|
|
|
task javadocJar(type: Jar) {
|
|
|
|
classifier 'javadoc'
|
|
|
|
from javadoc
|
|
|
|
}
|
|
|
|
|
|
|
|
task sourcesJar(type: Jar) {
|
|
|
|
classifier 'sources'
|
|
|
|
from sourceSets.main.allSource
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
archives javadocJar
|
|
|
|
archives shadowJar
|
|
|
|
archives sourcesJar
|
2018-08-12 23:19:02 +02:00
|
|
|
}
|