17 lines
203 B
Groovy
17 lines
203 B
Groovy
plugins {
|
|
alias(catalog.plugins.envelope)
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':')
|
|
}
|
|
|
|
envelopeJar {
|
|
mainClass = 'net.woggioni.jwo.benchmark.Main'
|
|
}
|
|
|