From: Robert Varga Date: Sat, 7 Nov 2020 09:23:16 +0000 (+0100) Subject: Convert mdsal-binding-spi to a JPMS module X-Git-Tag: v7.0.2~20 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;ds=sidebyside;h=2d855af1376957060d1aff156b491955d2505609;p=mdsal.git Convert mdsal-binding-spi to a JPMS module This is a simple component, convert it to a JPMS module. JIRA: MDSAL-631 Change-Id: Ia539cdac1ae672929357bccd5637418932a9a01b Signed-off-by: Robert Varga --- diff --git a/binding/mdsal-binding-spi/pom.xml b/binding/mdsal-binding-spi/pom.xml index 5f13bb22f4..bc741b3f8b 100644 --- a/binding/mdsal-binding-spi/pom.xml +++ b/binding/mdsal-binding-spi/pom.xml @@ -34,19 +34,4 @@ guava - - - - - org.apache.felix - maven-bundle-plugin - - - org.opendaylight.mdsal.binding.spi - - - - - - diff --git a/binding/mdsal-binding-spi/src/main/java/module-info.java b/binding/mdsal-binding-spi/src/main/java/module-info.java new file mode 100644 index 0000000000..3fdf94d708 --- /dev/null +++ b/binding/mdsal-binding-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.binding.spi { + exports org.opendaylight.mdsal.binding.spi; + + requires transitive org.opendaylight.mdsal.binding.api; + + // Annotations + requires static transitive org.eclipse.jdt.annotation; +}