Skip to content
Snippets Groups Projects
Commit 3288539d authored by David Georg Reichelt's avatar David Georg Reichelt
Browse files

Copy MooBench.jar in build

parent 737e9493
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,6 @@ dependencies {
}
jar {
manifest {
attributes 'Implementation-Title': 'Moobench Benchmark',
'Implementation-Version': '0.1-SNAPSHOT',
......@@ -21,4 +20,12 @@ jar {
from {
configurations.runtimeClasspath.findAll { it.name.endsWith('jar') }.collect { zipTree(it) }
}
}
task copyJarToBin(type:Copy,dependsOn:[jar]) {
copy {
from jar
into "../frameworks/SPASSmeter/"
rename('benchmark.jar', 'MooBench.jar')
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment