All Downloads are FREE. Search and download functionalities are using the official Maven repository.

croprofile.helidon-microprofile-fault-tolerance.4.1.4.source-code.module-info Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2018, 2023 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.
 */

import io.helidon.common.features.api.Feature;
import io.helidon.common.features.api.HelidonFlavor;

/**
 * Microprofile fault tolerance implementation.
 *
 * @see org.eclipse.microprofile.faulttolerance
 */
@Feature(value = "Fault Tolerance",
        description = "MicroProfile Fault Tolerance spec implementation",
        in = HelidonFlavor.MP,
        path = "FT"
)
module io.helidon.microprofile.faulttolerance {

    requires io.helidon.common.configurable;
    requires io.helidon.common.context;
    requires io.helidon.config.mp;
    requires io.helidon.microprofile.config;
    requires io.helidon.microprofile.metrics;
    requires io.helidon.microprofile.server;
    requires io.helidon.faulttolerance;
    requires jakarta.annotation;
    requires jakarta.inject;
    requires jersey.weld2.se;
    requires microprofile.config.api;
    requires microprofile.fault.tolerance.api;
    requires microprofile.metrics.api;
    requires weld.api;
    requires weld.spi;

    requires static io.helidon.common.features.api;

    requires transitive jakarta.cdi;

    exports io.helidon.microprofile.faulttolerance;

    // needed when running with modules - to make private methods accessible
    opens io.helidon.microprofile.faulttolerance to weld.core.impl, io.helidon.microprofile.cdi;

    provides jakarta.enterprise.inject.spi.Extension
            with io.helidon.microprofile.faulttolerance.FaultToleranceExtension;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy