forked from awumii/CommandControl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
35 lines (29 loc) · 789 Bytes
/
build.gradle.kts
File metadata and controls
35 lines (29 loc) · 789 Bytes
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
plugins {
java
id("com.github.johnrengelman.shadow") version "7.0.0"
}
allprojects {
group = "me.xneox"
version = "2.0.0"
repositories {
mavenCentral()
}
}
tasks {
build {
dependsOn(shadowJar)
}
shadowJar {
//minimize()
relocate("org.bstats", "me.xneox.commandcontrol.libs.bstats")
relocate("org.spongepowered.configurate", "me.xneox.commandcontrol.libs.configurate")
relocate("io.leangen.geantyref", "me.xneox.commandcontrol.libs.geantyref")
relocate("com.typesafe.config", "me.xneox.commandcontrol.libs.config")
}
}
// Include all platforms in one jar.
dependencies {
implementation(project(":core"))
implementation(project(":paper"))
implementation(project(":velocity"))
}