29 lines
587 B
Groovy
29 lines
587 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'application'
|
|
}
|
|
|
|
group 'ro.mihai'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.google.inject:guice:5.1.0'
|
|
implementation 'com.twitter:finagle-http_2.12:22.7.0'
|
|
implementation 'com.twitter:finagle-thrift_2.11:21.2.0'
|
|
implementation 'io.netty:netty-transport:4.1.77.Final'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
application {
|
|
mainClass = 'ro.mihai.Main'
|
|
}
|