jbuild.api.config.DependencyScope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbuild-api Show documentation
Show all versions of jbuild-api Show documentation
JBuild Java API for extending the jb tool.
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,
}