agones-test/build.gradle
2024-06-02 19:08:53 +02:00

26 lines
No EOL
588 B
Groovy

plugins {
id 'java'
}
group = 'com.matzhilven'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
// https://mvnrepository.com/artifact/io.grpc/grpc-stub/latest
implementation "io.grpc:grpc-stub:1.47.0"
implementation "io.grpc:grpc-protobuf:1.47.0"
implementation "io.grpc:grpc-netty:1.47.0"
implementation "com.github.infumia:agones4j:1.0.3"
}
test {
useJUnitPlatform()
}