30 lines
586 B
Groovy
30 lines
586 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-http2_2.13:22.4.0'
|
|
implementation 'com.twitter:finagle-core_2.10:6.35.0'
|
|
implementation 'com.twitter:finagle-http_2.13:22.4.0'
|
|
|
|
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'
|
|
}
|