Do not require spotbugs transitively
[mdsal.git] / yanglib / mdsal-yanglib-rfc8525 / 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 import org.opendaylight.mdsal.binding.dom.codec.api.BindingCodecTreeFactory;
9 import org.opendaylight.mdsal.binding.runtime.api.BindingRuntimeGenerator;
10 import org.opendaylight.mdsal.yanglib.api.YangLibSupportFactory;
11 import org.opendaylight.mdsal.yanglib.rfc8525.YangLibrarySupportFactory;
12 import org.opendaylight.yangtools.yang.parser.api.YangParserFactory;
13
14 module org.opendaylight.mdsal.yanglib.rfc8525 {
15     // FIXME: just the DI bits
16     exports org.opendaylight.mdsal.yanglib.rfc8525;
17
18     provides YangLibSupportFactory with YangLibrarySupportFactory;
19
20     uses BindingCodecTreeFactory;
21     uses BindingRuntimeGenerator;
22     uses YangParserFactory;
23
24     requires transitive org.opendaylight.yangtools.yang.parser.api;
25     requires transitive org.opendaylight.mdsal.binding.dom.codec.api;
26     requires transitive org.opendaylight.mdsal.yanglib.api;
27
28     requires com.google.common;
29     requires org.opendaylight.mdsal.binding.runtime.spi;
30     requires org.opendaylight.yangtools.yang.binding;
31     requires org.opendaylight.yangtools.yang.data.api;
32     requires org.opendaylight.yangtools.yang.data.util;
33     requires org.opendaylight.yang.gen.ietf.datastores.rfc8342;
34     requires org.opendaylight.yang.gen.ietf.inet.types.rfc6991;
35     requires org.opendaylight.yang.gen.ietf.yang.library.rfc8525;
36     requires org.opendaylight.yang.gen.ietf.yang.types.rfc6991;
37     requires org.slf4j;
38
39     // Annotations
40     requires static javax.inject;
41     requires static org.kohsuke.metainf_services;
42     requires static org.osgi.service.component.annotations;
43 }