forked from adde0109/Ambassador
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (30 loc) · 891 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
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "7.1.2"
}
group 'org.adde0109'
version '1.1.5B-alpha'
repositories {
maven {
name 'papermc'
url 'https://repo.papermc.io/repository/maven-public/'
}
mavenCentral()
}
dependencies {
compileOnly 'com.velocitypowered:velocity-api'
compileOnly 'com.velocitypowered:velocity-proxy'
annotationProcessor 'com.velocitypowered:velocity-api'
implementation 'com.electronwill.night-config:toml:3.6.5'
implementation 'org.bstats:bstats-velocity:3.0.0'
implementation 'org.apache.commons:commons-collections4:4.4'
compileOnly 'io.netty:netty-buffer:4.1.85.Final'
compileOnly 'io.netty:netty-transport:4.1.85.Final'
}
shadowJar {
relocate 'org.bstats', 'org.adde0109.ambassador'
}
assemble.dependsOn(shadowJar)
tasks.shadowJar.configure {
classifier = null
}