ght.netconf.restconf-server-mdsal.8.0.1.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restconf-server-mdsal Show documentation
Show all versions of restconf-server-mdsal Show documentation
RESTCONF server implemented on top of MD-SAL
/*
* Copyright (c) 2024 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.restconf.server.mdsal {
exports org.opendaylight.restconf.server.mdsal;
requires transitive org.opendaylight.restconf.mdsal.spi;
requires transitive org.opendaylight.restconf.server.api;
requires transitive org.opendaylight.restconf.server.spi;
requires org.opendaylight.netconf.dom.api;
requires org.opendaylight.yangtools.yang.data.spi;
requires org.slf4j;
// Annotation-only dependencies
requires static transitive java.annotation;
requires static transitive javax.inject;
requires static transitive org.eclipse.jdt.annotation;
requires static com.github.spotbugs.annotations;
requires static org.osgi.annotation.bundle;
requires static org.osgi.service.component.annotations;
}