[AETHER-780] Decouple Stratum from ODTN

- Introduces a new driver for stratum-odtn devices
- The new driver depends on stratum and not viceversa
- Removes the odtn dep from stratum
- Updates stratum and tost bazel profiles

Change-Id: I7118c54c865305a7ace28b7316e3731833ddf7b4
diff --git a/drivers/stratum-odtn/BUILD b/drivers/stratum-odtn/BUILD
new file mode 100644
index 0000000..83300ab
--- /dev/null
+++ b/drivers/stratum-odtn/BUILD
@@ -0,0 +1,17 @@
+osgi_jar(
+    resources = glob(["src/main/resources/**"]),
+    resources_root = "src/main/resources",
+    deps = CORE_DEPS,
+)
+
+onos_app(
+    app_name = "org.onosproject.drivers.stratum-odtn",
+    category = "Drivers",
+    description = "Adds support for Stratum Odtn-based devices",
+    required_apps = [
+        "org.onosproject.drivers.stratum",
+        "org.onosproject.drivers.odtn-driver",
+    ],
+    title = "Stratum Odtn Drivers",
+    url = "http://onosproject.org",
+)