From: Robert Varga Date: Sun, 8 Nov 2020 09:14:25 +0000 (+0100) Subject: Convert mdsal-eos-common-spi to a JPMS module X-Git-Tag: v7.0.2~15 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F76%2F93676%2F1;p=mdsal.git 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 --- 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; +}