Convert mdsal-eos-common-spi to a JPMS module 76/93676/1
authorRobert Varga <robert.varga@pantheon.tech>
Sun, 8 Nov 2020 09:14:25 +0000 (10:14 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Sun, 8 Nov 2020 09:14:43 +0000 (10:14 +0100)
This is really simple SPI, convert it to a JPMS module.

JIRA: MDSAL-636
Change-Id: I452b4bf5599550b1e76a63fce133cfeba1544230
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
entityownership/mdsal-eos-common-spi/src/main/java/module-info.java [new file with mode: 0644]

diff --git a/entityownership/mdsal-eos-common-spi/src/main/java/module-info.java b/entityownership/mdsal-eos-common-spi/src/main/java/module-info.java
new file mode 100644 (file)
index 0000000..d6d3164
--- /dev/null
@@ -0,0 +1,15 @@
+/*
+ * Copyright (c) 2020 PANTHEON.tech, s.r.o. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+module org.opendaylight.mdsal.eos.common.spi {
+    exports org.opendaylight.mdsal.eos.common.spi;
+
+    requires transitive org.opendaylight.mdsal.eos.common.api;
+
+    // Annotations
+    requires static transitive org.eclipse.jdt.annotation;
+}