-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (28 loc) · 807 Bytes
/
Copy pathbuild.gradle
File metadata and controls
34 lines (28 loc) · 807 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
plugins {
id "org.jetbrains.kotlin.jvm" version "2.2.0"
id "com.gradleup.shadow" version "8.3.5"
}
group 'com.itsazza'
version '1.4.0'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenLocal()
mavenCentral()
maven { url "https://repo.papermc.io/repository/maven-public/" }
maven { url "https://repo.minebench.de" }
}
dependencies {
implementation "de.themoep:inventorygui:1.6.1-SNAPSHOT"
implementation 'org.bstats:bstats-bukkit:3.0.2'
compileOnly "io.papermc.paper:paper-api:1.21.8-R0.1-SNAPSHOT"
}
shadowJar {
minimize()
relocate('org.bstats', 'com.itsazza.resources.bstats')
relocate('de.themoep', 'com.itsazza.resources.themoep')
archiveFileName.set("NoteBlockEditor-${this.version}.jar")
}