forked from LioRael/FaithlLevel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
58 lines (53 loc) · 1.49 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
56
57
58
plugins {
java
id("io.izzel.taboolib") version "1.34"
id("org.jetbrains.dokka") version "1.6.0"
kotlin("jvm") version "1.6.10"
}
taboolib {
install("common")
install("common-5")
install("platform-bukkit")
install("module-lang")
install("module-chat")
install("module-kether")
install("module-configuration")
install("module-metrics")
install("module-database")
install("expansion-javascript")
classifier = null
version = "6.0.7-26"
description {
contributors {
name("Leosouthey")
}
links{
name("homepage").url("https://faithl.com")
}
dependencies {
name("PlaceholderAPI").optional(true)
name("AttributePlus").optional(true)
name("MythicMobs").optional(true)
name("Zaphkiel").optional(true)
}
}
}
repositories {
maven { url = uri("https://repo.tabooproject.org/repository/releases/") }
mavenCentral()
}
dependencies {
compileOnly("ink.ptms.core:v11800:11800:api")
compileOnly("ink.ptms.core:v11800:11800:mapped")
compileOnly("ink.ptms.core:v11800:11800:universal")
compileOnly("com.alibaba:fastjson:1.2.79")
compileOnly("org.jetbrains.kotlin:kotlin-stdlib:1.6.10")
compileOnly(fileTree("libs"))
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
configure<JavaPluginExtension> {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}