BlueMapAPI/build.gradle

28 lines
381 B
Groovy
Raw Normal View History

2020-04-09 22:08:05 +02:00
plugins {
id 'java'
id 'java-library'
2020-04-09 22:08:05 +02:00
}
repositories {
jcenter()
mavenCentral()
}
2020-04-10 14:55:08 +02:00
dependencies {
api 'com.flowpowered:flow-math:1.0.3'
2020-04-10 14:55:08 +02:00
}
2020-04-09 22:08:05 +02:00
apply plugin: 'java'
group = 'de.bluecolored.bluemap.api'
version = apiVersion
javadoc {
options {
links += [
'https://docs.oracle.com/javase/8/docs/api/',
'https://javadoc.io/doc/com.flowpowered/flow-math/1.0.3/'
]
}
}