class Dependency
Represents dependency of one build on another
Dependency(base: Dependency? = null, init: Dependency.() -> Unit = {}) |
var artifacts: ArtifactDependency?
Artifact dependency settings or null if there should be no artifact dependency |
|
var extId: String
External id of the build configuration to depend on |
|
var snapshot: SnapshotDependency?
Snapshot dependency settings or null if there should be no snapshot dependency |
fun artifacts(init: ArtifactDependency.() -> Unit): Unit
Configures artifact dependency. When this block is missing, no artifact dependency will be added. |
|
fun snapshot(init: SnapshotDependency.() -> Unit): Unit
Configures snapshot dependency. When this block is missing, no snapshot dependency will be added. |