ght.yangtools.binding-loader.14.0.4.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binding-loader Show documentation
Show all versions of binding-loader Show documentation
YANG Binding class loader for JIT environments
/*
* Copyright (c) 2022 PANTHEON.tech, s.r.o. and others. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*/
/**
* A ClassLoader for binding constructs. It allows loading of runtime-generated classes with a combined visibility with
* a set of parent class loaders.
*/
module org.opendaylight.yangtools.binding.loader {
exports org.opendaylight.yangtools.binding.loader;
requires transitive net.bytebuddy;
requires com.google.common;
requires org.opendaylight.yangtools.binding.spec;
requires org.slf4j;
// Annotations
requires static transitive org.eclipse.jdt.annotation;
requires static org.osgi.annotation.bundle;
}