17 lines
188 B
Groovy
17 lines
188 B
Groovy
plugins {
|
|
id 'application'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':')
|
|
}
|
|
|
|
application {
|
|
mainClass = 'net.woggioni.jwo.benchmark.Main'
|
|
}
|
|
|