-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
55 lines (49 loc) · 1.26 KB
/
build.gradle.kts
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
plugins {
java
id("io.izzel.taboolib") version "1.31"
id("org.jetbrains.kotlin.jvm") version "1.5.10"
}
taboolib {
install("common")
install("common-5")
install("module-configuration")
install("module-chat")
install("module-effect")
install("module-lang")
install("module-kether")
install("module-database")
install("module-nms")
install("module-nms-util")
install("platform-bukkit")
install("expansion-command-helper", "expansion-player-database")
classifier = null
version = "6.0.3-21"
description {
contributors {
name("Lanscarlos")
}
dependencies {
name("Zaphkiel")
name("PlaceholderAPI").optional(true)
}
}
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compileOnly("ink.ptms:nms-all:1.0.0")
compileOnly("ink.ptms.core:v11701:11701:mapped")
compileOnly("ink.ptms.core:v11701:11701:universal")
compileOnly("ink.ptms:Zaphkiel:1.7.4")
compileOnly(kotlin("stdlib"))
compileOnly(fileTree("libs"))
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
configure<JavaPluginConvention> {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}