Convert mdsal-eos-common-api to a JPMS module 75/93675/1
authorRobert Varga <robert.varga@pantheon.tech>
Sun, 8 Nov 2020 09:10:46 +0000 (10:10 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Sun, 8 Nov 2020 09:11:18 +0000 (10:11 +0100)
This is really simple API, convert it to a JPMS module.

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

diff --git a/entityownership/mdsal-eos-common-api/src/main/java/module-info.java b/entityownership/mdsal-eos-common-api/src/main/java/module-info.java
new file mode 100644 (file)
index 0000000..a610075
--- /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.api {
+    exports org.opendaylight.mdsal.eos.common.api;
+
+    requires transitive org.opendaylight.yangtools.concepts;
+
+    // Annotations
+    requires static transitive org.eclipse.jdt.annotation;
+}