Merge branch 'stable-2.16'

* stable-2.16:
  Update mockito-core to 2.24.0
  Upgrade bazlets to latest stable-2.16 to build with 2.16.4 API
  Upgrade bazlets to latest stable-2.15 to build with 2.15.9 API
  Upgrade bazlets to latest stable-2.15 to build with 2.15.8 API
  Upgrade bazlets to latest stable-2.14 to build with 2.14.18 API

Change-Id: I90e78f4c85da5f8bb4a8e2423e06c7042547ea88
diff --git a/WORKSPACE b/WORKSPACE
index 3466329..a08518b 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -3,7 +3,7 @@
 load("//:bazlets.bzl", "load_bazlets")
 
 load_bazlets(
-    commit = "09a18a88ebdada986d32c1f50581e8734a47939a",
+    commit = "c15e64db2a87c0453427ff45f79d1ed3899b5d92",
     #local_path = "/home/<user>/projects/bazlets",
 )
 
diff --git a/external_plugin_deps.bzl b/external_plugin_deps.bzl
index d117e7b..243642d 100644
--- a/external_plugin_deps.bzl
+++ b/external_plugin_deps.bzl
@@ -3,8 +3,8 @@
 def external_plugin_deps():
     maven_jar(
         name = "mockito",
-        artifact = "org.mockito:mockito-core:2.23.4",
-        sha1 = "a35b6f8ffcfa786771eac7d7d903429e790fdf3f",
+        artifact = "org.mockito:mockito-core:2.24.0",
+        sha1 = "969a7bcb6f16e076904336ebc7ca171d412cc1f9",
         deps = [
             "@byte-buddy//jar",
             "@byte-buddy-agent//jar",
@@ -12,18 +12,18 @@
         ],
     )
 
-    BYTE_BUDDY_VERSION = "1.9.3"
+    BYTE_BUDDY_VERSION = "1.9.7"
 
     maven_jar(
         name = "byte-buddy",
         artifact = "net.bytebuddy:byte-buddy:" + BYTE_BUDDY_VERSION,
-        sha1 = "f32e510b239620852fc9a2387fac41fd053d6a4d",
+        sha1 = "8fea78fea6449e1738b675cb155ce8422661e237",
     )
 
     maven_jar(
         name = "byte-buddy-agent",
         artifact = "net.bytebuddy:byte-buddy-agent:" + BYTE_BUDDY_VERSION,
-        sha1 = "f5b78c16cf4060664d80b6ca32d80dca4bd3d264",
+        sha1 = "8e7d1b599f4943851ffea125fd9780e572727fc0",
     )
 
     maven_jar(