MythicNetwork/Anticheat-master/build.gradle

38 lines
902 B
Groovy

plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "5.2.0"
}
group 'cc.fyre.anticheat'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile 'org.apache.commons:commons-math3:3.6.1'
compile 'io.github.retrooper:packetevents:1.7.9'
compileOnly 'cc.fyre.universe:spigot:1.0-SNAPSHOT'
compileOnly 'cc.fyre.proton:proton:1.0-SNAPSHOT'
compileOnly 'cc.fury.piston:piston:1.0-SNAPSHOT'
compileOnly 'cc.fyre.neutron:neutron:1.0-SNAPSHOT'
compileOnly 'org.mongodb:mongo-java-driver:3.10.2'
compileOnly 'com.google.code.gson:gson:2.8.6'
compileOnly 'net.valorhcf:vspigot-server:1.7.10-R0.1-SNAPSHOT'
annotationProcessor 'org.projectlombok:lombok:1.16.10'
}
shadowJar {
classifier = null
minimize()
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}