-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
36 lines (30 loc) · 939 Bytes
/
build.gradle.kts
File metadata and controls
36 lines (30 loc) · 939 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
plugins {
kotlin("jvm").version("1.3.70")
id("maven-publish")
id("com.gradle.plugin-publish").version("0.12.0")
}
group = "kr.heartpattern"
version = "4.0.7"
repositories {
maven("https://maven.heartpattern.kr/repository/maven-public/")
}
val kotlinVersion = "1.3.70"
dependencies {
implementation(kotlin("stdlib", kotlinVersion))
implementation(gradleKotlinDsl())
implementation(kotlin("gradle-plugin", kotlinVersion))
runtime(kotlin("annotation-processing-gradle", kotlinVersion))
runtime(kotlin("serialization", kotlinVersion))
}
pluginBundle {
website = "https://github.com/Spikot/SpikotGradle"
vcsUrl = "https://github.com/Spikot/SpikotGradle"
description = "Gradle plugin for Spikot Framework"
tags = listOf("bukkit", "spikot")
plugins {
create("SpikotPlugin") {
id = "kr.heartpattern.spikot"
displayName = "SpikotGradle"
}
}
}