Remove MountPointIdentifier
[yangtools.git] / data / yang-data-impl / src / main / java / module-info.java
1 /*
2  * Copyright (c) 2020 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.yangtools.yang.data.impl {
9     // FIXME: do not export data.impl.*
10     exports org.opendaylight.yangtools.yang.data.impl.codec;
11     exports org.opendaylight.yangtools.yang.data.impl.schema;
12     exports org.opendaylight.yangtools.yang.data.impl.schema.builder.impl;
13     exports org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.valid;
14     exports org.opendaylight.yangtools.yang.data.impl.schema.nodes;
15
16     requires transitive java.xml;
17     requires transitive com.google.common;
18     requires transitive org.opendaylight.yangtools.concepts;
19     requires transitive org.opendaylight.yangtools.yang.common;
20     requires transitive org.opendaylight.yangtools.yang.data.api;
21     requires transitive org.opendaylight.yangtools.yang.data.spi;
22     requires transitive org.opendaylight.yangtools.yang.data.util;
23     requires transitive org.opendaylight.yangtools.yang.model.api;
24     requires transitive org.opendaylight.yangtools.yang.model.spi;
25
26     requires org.opendaylight.yangtools.yang.model.util;
27     requires org.opendaylight.yangtools.util;
28     requires org.slf4j;
29
30     // Annotations
31     requires static transitive org.eclipse.jdt.annotation;
32     requires static com.github.spotbugs.annotations;
33 }