From d9352108d73258df371358e2cc81dc0e7697dd29 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Sun, 8 Nov 2020 10:14:25 +0100 Subject: [PATCH] Convert mdsal-eos-common-spi to a JPMS module This is really simple SPI, convert it to a JPMS module. JIRA: MDSAL-636 Change-Id: I452b4bf5599550b1e76a63fce133cfeba1544230 Signed-off-by: Robert Varga --- .../src/main/java/module-info.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 entityownership/mdsal-eos-common-spi/src/main/java/module-info.java 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 index 0000000000..d6d3164c52 --- /dev/null +++ b/entityownership/mdsal-eos-common-spi/src/main/java/module-info.java @@ -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; +} -- 2.36.6