Added dokka

This commit is contained in:
bluefireoly
2020-09-28 23:30:51 +02:00
parent b240ec024c
commit 2dde989aa4
2 changed files with 20 additions and 2 deletions

View File

@@ -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 {

View File

@@ -1,2 +1,14 @@
rootProject.name = "KSpigot" rootProject.name = "KSpigot"
/*
* PLUGINS
*/
pluginManagement {
repositories {
gradlePluginPortal()
jcenter()
}
}