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

jbuild.api.config.DependencyScope Maven / Gradle / Ivy

The newest version!
package jbuild.api.config;

public enum DependencyScope {
    /**
     * dependency is required both at compile-time and runtime.
     */
    ALL,

    /**
     * dependency is required at compile-time, but not runtime.
     */
    COMPILE_ONLY,

    /**
     * dependency is required at runtime, but not compile-time.
     */
    RUNTIME_ONLY,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy