We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a374ff commit b3223f8Copy full SHA for b3223f8
build.gradle
@@ -4,7 +4,6 @@ plugins {
4
}
5
6
def group = 'fun.supersmp'
7
-def version = '1.2.0'
8
def id = 'CodeLock'
9
10
repositories {
@@ -49,6 +48,7 @@ dependencies {
49
48
exclude group: 'org.geysermc.cumulus', module: 'cumulus'
50
51
+ implementation("games.negative.alumina:alumina:2.4.2")
52
53
54
def targetJavaVersion = 17
@@ -69,3 +69,17 @@ tasks.withType(JavaCompile).configureEach {
69
70
71
72
+tasks {
73
+ build {
74
+ dependsOn(shadowJar)
75
+ }
76
+}
77
+
78
+shadowJar {
79
+ archiveBaseName.set("${id}")
80
+ archiveClassifier.set("")
81
+ archiveVersion.set("")
82
83
+ relocate "games.negative.alumina", "${group}.libs.alumina"
84
85
0 commit comments