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() }