diff --git a/benchmark/build.gradle b/benchmark/build.gradle
index baed11362e6377027529a893c315a25b0ab7d836..d98d96fc46efdbe3739647c24b085b506cdaa1b7 100644
--- a/benchmark/build.gradle
+++ b/benchmark/build.gradle
@@ -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