running integrationTest should force uploading both artifacts.

integrationTest was made to depend on publishLocal but that's
only the one for the gradle artifact which means the builder
one could be out of sync.

Now, gradle:publishLocal.dependsOn builder:publishLocal making
sure both will be deployed when running the test.

Change-Id: I10a9955b48f181df4be3aca6d44f2e124279200b
diff --git a/gradle/build.gradle b/gradle/build.gradle
index 1800f9d..5f70389 100644
--- a/gradle/build.gradle
+++ b/gradle/build.gradle
@@ -54,6 +54,7 @@
         }
     }
 }
+publishLocal.dependsOn ':builder:publishLocal'
 
 task integrationTest(type: Test, dependsOn: publishLocal) {
     testClassesDir = sourceSets.integrationTest.output.classesDir