-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
66 lines (60 loc) · 1.56 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
59
60
61
62
63
64
65
66
plugins {
`java-library`
`maven-publish`
id("io.izzel.taboolib") version "1.50"
id("org.jetbrains.kotlin.jvm") version "1.5.31"
}
taboolib {
install(
"common",
"common-5",
"module-nms",
"module-nms-util",
"module-effect",
"module-lang",
"module-chat",
"module-configuration",
"platform-bukkit",
"expansion-command-helper"
)
classifier = null
version = "6.0.10-71"
options("keep-kotlin-module")
}
repositories {
mavenCentral()
}
dependencies {
compileOnly("ink.ptms:nms-all:1.0.0")
compileOnly("ink.ptms.core:v11802:11802:universal")
compileOnly("ink.ptms.core:v11802:11802:mapped")
compileOnly("ink.ptms.core:v11200:11200")
compileOnly(fileTree("libs"))
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
configure<JavaPluginConvention> {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
publishing {
repositories {
maven {
url = uri("https://repo.tabooproject.org/repository/releases")
credentials {
username = project.findProperty("taboolibUsername").toString()
password = project.findProperty("taboolibPassword").toString()
}
authentication {
create<BasicAuthentication>("basic")
}
}
}
publications {
create<MavenPublication>("library") {
from(components["java"])
groupId = project.group.toString()
}
}
}