Added dokka
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
@file:Suppress("PropertyName")
|
@file:Suppress("PropertyName")
|
||||||
|
|
||||||
import java.util.Date
|
import java.util.*
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* BUILD CONSTANTS
|
* BUILD CONSTANTS
|
||||||
@@ -21,9 +21,12 @@ version = "1.16.3_R5"
|
|||||||
|
|
||||||
description = "A Kotlin API for the Minecraft Server Software \"Spigot\"."
|
description = "A Kotlin API for the Minecraft Server Software \"Spigot\"."
|
||||||
|
|
||||||
|
/*
|
||||||
|
* PLUGINS
|
||||||
|
*/
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
|
|
||||||
java
|
|
||||||
kotlin("jvm") version "1.4.10"
|
kotlin("jvm") version "1.4.10"
|
||||||
|
|
||||||
maven
|
maven
|
||||||
@@ -31,6 +34,8 @@ plugins {
|
|||||||
|
|
||||||
id("com.jfrog.bintray") version "1.8.5"
|
id("com.jfrog.bintray") version "1.8.5"
|
||||||
|
|
||||||
|
id("org.jetbrains.dokka") version "1.4.10"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -40,6 +45,7 @@ plugins {
|
|||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
mavenLocal() // for retrieving the local available binaries of spigot (use the BuildTools)
|
mavenLocal() // for retrieving the local available binaries of spigot (use the BuildTools)
|
||||||
|
jcenter()
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@@ -1,2 +1,14 @@
|
|||||||
rootProject.name = "KSpigot"
|
rootProject.name = "KSpigot"
|
||||||
|
|
||||||
|
/*
|
||||||
|
* PLUGINS
|
||||||
|
*/
|
||||||
|
|
||||||
|
pluginManagement {
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
gradlePluginPortal()
|
||||||
|
jcenter()
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Reference in New Issue
Block a user