forked from TabooLib/zaphkiel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
70 lines (64 loc) · 1.63 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
67
68
69
70
plugins {
`java-library`
`maven-publish`
id("io.izzel.taboolib") version "1.26"
id("org.jetbrains.kotlin.jvm") version "1.5.10"
}
taboolib {
description {
contributors {
name("坏黑")
}
}
install("common")
install("common-5")
install("module-configuration")
install("module-database")
install("module-kether")
install("module-chat")
install("module-lang")
install("module-nms")
install("module-nms-util")
install("module-ui")
install("platform-bukkit")
classifier = null
version = "6.0.0-53"
}
repositories {
mavenCentral()
}
dependencies {
compileOnly("public:Tiphareth:1.0.0")
compileOnly("public:MythicMobs:4.11.0")
compileOnly("ink.ptms:Sandalphon:1.2.7")
compileOnly("ink.ptms.core:v11605:11605")
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
}
publishing {
repositories {
maven {
url = uri("https://repo2s.ptms.ink/repository/maven-releases/")
credentials {
username = project.findProperty("user").toString()
password = project.findProperty("password").toString()
}
authentication {
create<BasicAuthentication>("basic")
}
}
}
publications {
create<MavenPublication>("library") {
from(components["java"])
groupId = "ink.ptms"
}
}
}