Convert mdsal-binding-dom-codec-osgi to a JPMS module
[mdsal.git] / binding / mdsal-binding-dom-codec-osgi / src / main / java / module-info.java
1 /*
2  * Copyright (c) 2022 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.binding.dom.codec.osgi {
9     exports org.opendaylight.mdsal.binding.dom.codec.osgi;
10
11     requires transitive org.opendaylight.mdsal.dom.schema.osgi;
12     requires org.opendaylight.mdsal.binding.dom.codec.api;
13     requires org.opendaylight.mdsal.binding.dom.codec.spi;
14     requires org.opendaylight.mdsal.binding.runtime.osgi;
15     requires org.opendaylight.yangtools.yang.binding;
16     requires org.opendaylight.yangtools.yang.data.api;
17     requires org.osgi.framework;
18     requires org.osgi.service.component;
19     requires org.slf4j;
20
21     // Annotations
22     requires static org.checkerframework.checker.qual;
23     requires static org.gaul.modernizer_maven_annotations;
24     requires static org.osgi.service.component.annotations;
25 }