update the build so that repeated make images calls copy files to the correct location

Change-Id: If6bdb84ff113c74b8f0e5ba75e17e859ec9d13b7
diff --git a/build.gradle b/build.gradle
index 3814079..d2d31cd 100644
--- a/build.gradle
+++ b/build.gradle
@@ -108,7 +108,7 @@
 
 task copyLocalRepo (dependsOn: buildOnosApps, type: Exec) {
     workingDir './'
-    commandLine 'cp', '-R', System.env.HOME + '/.m2/repository', 'repository'
+    commandLine 'cp', '-R', System.env.HOME + '/.m2/repository', '.'
 }
 
 task buildRepoImage (dependsOn: copyLocalRepo, type: Exec) {