blob: 5a4eb73c9e2bd14be68119de8bff46a26b4e6c95 [file] [log] [blame] [raw]
// Apply the java plugin to add support for Java
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
group = 'net.querz.nbt'
archivesBaseName = 'nbt'
version = '1.0'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
compileJava.options.encoding = 'UTF-8'
repositories {
jcenter()
}
dependencies {
testCompile 'junit:junit:4.12'
}
javadoc {
source = sourceSets.main.allJava
classpath = configurations.compile
destinationDir = file("./doc/")
options.windowTitle 'NBT'
options.encoding 'UTF-8'
options.linkSource true
options.links 'https://docs.oracle.com/javase/8/docs/api/'
}