-
Notifications
You must be signed in to change notification settings - Fork 16
/
build.gradle
45 lines (39 loc) · 1.02 KB
/
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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
group = 'at.helpch.placeholderapi.expansion'
version = '1.8.3'
repositories {
mavenCentral()
maven {
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
maven {
url 'https://repo.extendedclip.com/content/repositories/placeholderapi/'
}
maven {
url 'https://jitpack.io'
}
}
dependencies {
compileOnly 'org.spigotmc:spigot-api:1.16.3-R0.1-SNAPSHOT'
compileOnly 'me.clip:placeholderapi:2.11.1'
compileOnly 'org.jetbrains:annotations:23.0.0'
compileOnly 'com.github.MilkBowl:VaultAPI:1.7'
}
compileJava {
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
}
shadowJar {
archiveName("Expansion-Vault-${project.version}.jar")
}
tasks.register("buildToServer", Copy) {
group = "custom"
from(shadowJar)
into("./testServer/plugins/PlaceholderAPI/expansions")
}