-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (39 loc) · 899 Bytes
/
build.gradle
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
42
43
44
45
46
47
48
plugins {
id 'com.github.johnrengelman.shadow'
id "java"
}
apply plugin: "java"
group "club.thecraftythief.game"
version "1.0-SNAPSHOT"
sourceCompatibility = 16
targetCompatibility = 16
sourceSets {
main {
java {
srcDirs = ["src"]
}
resources {
srcDirs = ["resources"]
}
}
}
repositories {
maven {
url = "https://papermc.io/repo/repository/maven-public/"
}
maven {
url = "https://repo.aikar.co/content/groups/aikar/"
}
maven {
url = "https://hub.spigotmc.org/nexus/content/groups/public/"
}
}
dependencies {
compileOnly "io.papermc.paper:paper-api:1.17.1-R0.1-SNAPSHOT"
compileOnly project(":engine")
implementation "co.aikar:acf-paper:0.5.0-SNAPSHOT"
}
shadowJar {
relocate 'co.aikar.commands', 'club.thecraftythief.main.acf'
}
build.dependsOn shadowJar