8efdab8b766ca9579b5a4d993b1bf17adc51a6de
[yangtools.git] / common / 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 /**
16  * Mapping of YANG language constructs to Java.
17  *
18  * @provides CanonicalValueSupport for core YANG types
19  */
20 module org.opendaylight.yangtools.yang.common {
21     exports org.opendaylight.yangtools.yang.common;
22
23     provides CanonicalValueSupport with
24         Decimal64.Support,
25         Uint8.Support,
26         Uint16.Support,
27         Uint32.Support,
28         Uint64.Support;
29
30     requires transitive com.google.common;
31     requires transitive org.opendaylight.yangtools.concepts;
32     requires org.slf4j;
33
34     // Annotations
35     requires static transitive org.eclipse.jdt.annotation;
36     requires static com.github.spotbugs.annotations;
37     requires static org.checkerframework.checker.qual;
38     requires static osgi.annotation;
39 }