nfig.helidon-config-mp.4.1.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 helidon-config-mp Show documentation
Show all versions of helidon-config-mp Show documentation
Core of the implementation of MicroProfile Config specification
The newest version!
/*
* Copyright (c) 2020, 2024 Oracle and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Implementation of the non-CDI parts of Eclipse MicroProfile Config specification.
*/
@SuppressWarnings({ "requires-automatic", "requires-transitive-automatic" })
module io.helidon.config.mp {
requires io.helidon.common;
requires io.helidon.config;
requires jakarta.annotation;
requires io.helidon.common.configurable;
requires static io.helidon.config.metadata;
requires transitive microprofile.config.api;
exports io.helidon.config.mp;
exports io.helidon.config.mp.spi;
uses org.eclipse.microprofile.config.spi.ConfigSource;
uses org.eclipse.microprofile.config.spi.ConfigSourceProvider;
uses org.eclipse.microprofile.config.spi.Converter;
uses io.helidon.config.mp.spi.MpConfigFilter;
uses io.helidon.config.mp.spi.MpConfigSourceProvider;
uses io.helidon.config.mp.spi.MpMetaConfigProvider;
uses io.helidon.config.spi.ConfigParser;
provides org.eclipse.microprofile.config.spi.ConfigProviderResolver
with io.helidon.config.mp.MpConfigProviderResolver;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy