464e8b18db1b0dba0fdbed3c88ca9d62a040cad7
[mdsal.git] / dom / mdsal-dom-schema-osgi / src / main / java / module-info.java
1 /*
2  * Copyright (c) 2023 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 module org.opendaylight.mdsal.dom.schema.osgi {
9     exports org.opendaylight.mdsal.dom.schema.osgi;
10
11     requires transitive com.google.common;
12     requires transitive org.opendaylight.mdsal.binding.runtime.api;
13     requires org.opendaylight.mdsal.binding.runtime.spi;
14     requires org.opendaylight.mdsal.dom.spi;
15     requires org.opendaylight.yangtools.yang.binding;
16     requires org.opendaylight.yangtools.yang.model.api;
17     requires org.opendaylight.yangtools.yang.parser.api;
18     requires org.osgi.framework;
19     requires org.osgi.service.component;
20     requires org.osgi.util.tracker;
21     requires org.slf4j;
22
23     // Annotations
24     requires static org.apache.karaf.features.core;
25     requires static org.osgi.service.component.annotations;
26 }