Ambassador/build.gradle
2022-09-20 22:34:05 +02:00

36 lines
896 B
Groovy

plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "7.1.2"
}
group 'org.adde0109'
version '1.0.0-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'
implementation 'io.netty:netty-buffer:4.1.79.Final'
implementation 'io.netty:netty-transport:4.1.79.Final'
}
shadowJar {
relocate 'org.bstats', 'org.adde0109.ambassador'
}
assemble.dependsOn(shadowJar)
tasks.shadowJar.configure {
classifier = null
}