Do not require spotbugs transitively
[mdsal.git] / dom / mdsal-dom-broker / 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.dom.api.DOMMountPointService;
9 import org.opendaylight.mdsal.dom.broker.DOMMountPointServiceImpl;
10
11 module org.opendaylight.mdsal.dom.broker {
12     exports org.opendaylight.mdsal.dom.broker;
13
14     provides DOMMountPointService with DOMMountPointServiceImpl;
15
16     requires transitive org.opendaylight.mdsal.common.api;
17     requires transitive org.opendaylight.mdsal.dom.api;
18     requires transitive org.opendaylight.mdsal.dom.spi;
19     requires com.google.common;
20     requires org.slf4j;
21
22     // Annotations
23     requires static transitive java.annotation;
24     requires static transitive javax.inject;
25     requires static com.github.spotbugs.annotations;
26     requires static org.kohsuke.metainf_services;
27     requires static org.osgi.service.component.annotations;
28     requires static org.osgi.service.metatype.annotations;
29 }