You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1002 B
Groovy
49 lines
1002 B
Groovy
|
|
plugins {
|
|
id 'idea'
|
|
id 'org.jetbrains.kotlin.jvm' version '1.3.50'
|
|
id 'com.github.johnrengelman.shadow' version '2.0.4'
|
|
}
|
|
|
|
idea {
|
|
module {
|
|
downloadJavadoc = true
|
|
downloadSources = true
|
|
}
|
|
}
|
|
|
|
group "net.trivernis"
|
|
version "1.0-SNAPSHOT"
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url "https://hub.spigotmc.org/nexus/content/repositories/snapshots"
|
|
}
|
|
maven {
|
|
url 'https://papermc.io/repo/repository/maven-public/'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
compileOnly "org.spigotmc:spigot-api:1.14.4-R0.1-SNAPSHOT"
|
|
}
|
|
|
|
jar {
|
|
from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
|
|
}
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
} |