-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
41 lines (36 loc) · 938 Bytes
/
build.gradle.kts
File metadata and controls
41 lines (36 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
plugins {
kotlin("jvm") version "1.3.61"
id("maven-publish")
id("com.gradle.plugin-publish").version("0.10.1")
publishing
}
group = "kr.heartpattern.spikot"
version = "1.0.0"
repositories {
maven("https://maven.heartpattern.kr/repository/maven-public/")
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(gradleKotlinDsl())
implementation(kotlin("gradle-plugin"))
}
tasks {
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
}
pluginBundle {
website = "https://github.com/Spikot/MangroveGradle"
vcsUrl = "https://github.com/Spikot/MangroveGradle"
description = "Gradle plugin for Mangrove"
tags = listOf("dependency","bukkit")
plugins {
create("Mangrove") {
id = "kr.heartpattern.spikot.mangrove"
displayName = "MangroveGradle"
}
}
}