forked from InsinuateProjects/TrMenu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
88 lines (77 loc) · 2.82 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
val taboolibVersion: String by project
plugins {
kotlin("jvm") version "1.6.10"
id("io.izzel.taboolib") version "1.34"
id("trplugins.build.publish")
}
description = "Modern & Advanced Menu-Plugin for Minecraft Servers"
taboolib {
install(
"common",
"common-5",
"expansion-javascript",
"module-kether",
"module-ui",
"module-lang",
"module-database",
"module-database-mongodb",
"module-metrics",
"module-nms",
"module-chat",
"module-nms-util",
"module-configuration",
"platform-bukkit"
)
description {
contributors {
name("Arasple")
name("Score2")
}
dependencies {
name("PlaceholderAPI").optional(true)
name("Skulls").optional(true)
name("Vault").optional(true)
name("PlayerPoints").optional(true)
name("HeadDatabase").optional(true)
name("Oraxen").optional(true)
name("SkinsRestorer").optional(true)
name("ItemsAdder").optional(true)
name("floodgate-bukkit").optional(true)
name("FastScript").optional(true)
}
}
relocate("trplugins.menu", group.toString().toLowerCase())
classifier = null
version = taboolibVersion
}
repositories {
mavenCentral()
maven("https://repo.tabooproject.org/repository/releases")
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/")
maven("https://repo.codemc.org/repository/maven-public")
maven("https://repo.rosewooddev.io/repository/public/")
maven("https://repo.opencollab.dev/maven-snapshots/")
maven("https://jitpack.io")
}
dependencies {
taboo(project(":action")) { isTransitive = false }
taboo(project(":assist")) { isTransitive = false }
taboo(project(":receptacle")) { isTransitive = false }
// Libraries
compileOnly(kotlin("stdlib"))
compileOnly("org.apache.commons:commons-lang3:3.12.0")
compileOnly("com.electronwill.night-config:core:3.6.5")
// Server Core
compileOnly("ink.ptms.core:v11701:11701-minimize:mapped")
compileOnly("ink.ptms.core:v11701:11701-minimize:universal")
compileOnly("ink.ptms.core:v11604:11604")
// Hook Plugins
compileOnly("me.clip:placeholderapi:2.10.9") { isTransitive = false }
compileOnly("ink.ptms:Zaphkiel:1.6.0") { isTransitive = false }
compileOnly("ca.tweetzy:skulls:2.7.2") { isTransitive = false }
compileOnly("net.skinsrestorer:skinsrestorer-api:14.1.10") { isTransitive = false }
compileOnly("com.github.Th0rgal:Oraxen:-SNAPSHOT") { isTransitive = false }
compileOnly("org.black_ixx:playerpoints:3.1.1") { isTransitive = false }
compileOnly("com.github.MilkBowl:VaultAPI:-SNAPSHOT") { isTransitive = false }
compileOnly(fileTree("libs"))
}