-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (25 loc) · 870 Bytes
/
build.gradle
File metadata and controls
30 lines (25 loc) · 870 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
plugins {
id "org.jetbrains.kotlin.jvm" version "1.6.0"
id "com.github.johnrengelman.shadow" version "7.1.0"
}
group 'com.itsazza'
version '1.4.0'
repositories {
mavenLocal()
mavenCentral()
maven { url "https://repo.destroystokyo.com/repository/maven-public" }
maven { url "https://repo.minebench.de" }
maven { url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/"}
}
dependencies {
implementation "de.themoep:inventorygui:1.5-SNAPSHOT"
implementation 'org.bstats:bstats-bukkit:2.2.1'
compileOnly "org.spigotmc:spigot-api:1.18-R0.1-SNAPSHOT"
compileOnly "com.itsazza.noteblocksplus:noteblocksplus:1.1"
}
shadowJar {
minimize()
relocate('org.bstats', 'com.itsazza.resources.bstats')
relocate('de.themoep', 'com.itsazza.resources.themoep')
archiveName("NoteBlockEditor-${this.version}.jar")
}