-
David Georg Reichelt authoredDavid Georg Reichelt authored
build.gradle 529 B
plugins {
id 'java'
id 'application'
}
dependencies {
implementation 'com.beust:jcommander:1.72'
}
jar {
manifest {
attributes 'Implementation-Title': 'Moobench Benchmark',
'Implementation-Version': '0.1-SNAPSHOT',
'Main-Class': 'moobench.benchmark.BenchmarkMain'
}
from sourceSets.main.output
dependsOn configurations.runtimeClasspath
from {
configurations.runtimeClasspath.findAll { it.name.endsWith('jar') }.collect { zipTree(it) }
}
}