-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (37 loc) · 1.13 KB
/
build.gradle
File metadata and controls
41 lines (37 loc) · 1.13 KB
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
plugins {
id "java"
id "com.github.johnrengelman.shadow" version "7.1.1"
}
group "me.silentprogram"
version "1.0-SNAPSHOT"
//sourceCompatibility = JavaVersion.VERSION_16
repositories {
mavenCentral()
maven {
url = "https://hub.spigotmc.org/nexus/content/repositories/snapshots/"
}
}
subprojects {
apply plugin: 'java'
repositories {
mavenCentral()
maven {
url = "https://hub.spigotmc.org/nexus/content/repositories/snapshots/"
}
}
dependencies {
implementation 'org.bstats:bstats-bukkit:3.0.0'
compileOnly 'org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT'
implementation 'com.github.stefvanschie.inventoryframework:IF:0.10.6'
}
}
dependencies {
implementation 'org.bstats:bstats-bukkit:3.0.0'
implementation 'org.jetbrains:annotations:20.1.0'
compileOnly 'org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT'
implementation 'com.github.stefvanschie.inventoryframework:IF:0.10.6'
}
shadowJar {
relocate "com.github.stefvanschie.inventoryframework", "me.silentprogram.inventoryframework"
relocate "org.bstats", "me.silentprogram.bstats"
}