Jvm Component Dependencies
interface JvmComponentDependencies : PlatformDependencyModifiers, TestFixturesDependencyModifiers, GradleDependencies(source)
This DSL element is used to add dependencies to a component, for instance a TestSuite
implementation
dependencies are used at compilation and runtime.compileOnly
dependencies are used only at compilation and are not available at runtime.runtimeOnly
dependencies are not available at compilation and are used only at runtime.annotationProcessor
dependencies are used only at compilation for the annotation processor classpath
Since
7.3
See also
For more information.
Functions
Link copied to clipboard
open fun constraint(dependencyConstraint: Provider<out MinimalExternalModuleDependency>): Provider<out DependencyConstraint>
Link copied to clipboard
Returns a DependencyCollector that collects the set of annotation processor dependencies.
Link copied to clipboard
Returns a DependencyCollector that collects the set of compile-only dependencies.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Returns a DependencyCollector that collects the set of implementation dependencies.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Returns a DependencyCollector that collects the set of runtime-only dependencies.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard