4dc30b940035d4a1e8a927241c11d6038e390b3c
[yangtools.git] / yang / yang-common / src / main / java / module-info.java
1 /*
2  * Copyright (c) 2019 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.yangtools.yang.common.CanonicalValueSupport;
9 import org.opendaylight.yangtools.yang.common.Decimal64;
10 import org.opendaylight.yangtools.yang.common.Uint16;
11 import org.opendaylight.yangtools.yang.common.Uint32;
12 import org.opendaylight.yangtools.yang.common.Uint64;
13 import org.opendaylight.yangtools.yang.common.Uint8;
14
15 module org.opendaylight.yangtools.yang.common {
16     exports org.opendaylight.yangtools.yang.common;
17
18     provides CanonicalValueSupport with
19         Decimal64.Support,
20         Uint8.Support,
21         Uint16.Support,
22         Uint32.Support,
23         Uint64.Support;
24
25     requires transitive org.opendaylight.yangtools.concepts;
26     requires org.slf4j;
27
28     // Annotations
29     requires static com.github.spotbugs.annotations;
30     requires static org.eclipse.jdt.annotation;
31     requires static org.checkerframework.checker.qual;
32 }