ArtifactRule

data class ArtifactRule(    val include: Boolean,     val src: String,     val dst: String?)

A rule specifying how to copy artifacts from dependency. Use methods of the companion object to create it.

Constructors

Link copied to clipboard
fun ArtifactRule(    include: Boolean,     src: String,     dst: String?)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
fun asString(): String

Properties

Link copied to clipboard
val dst: String?
Link copied to clipboard
val include: Boolean
Link copied to clipboard
val src: String