data class ArtifactRule
A rule specifying how to copy artifacts from dependency. Use methods of the companion object to create it.
ArtifactRule(include: Boolean, src: String, dst: String?)
A rule specifying how to copy artifacts from dependency. Use methods of the companion object to create it. |
val dst: String? |
|
val include: Boolean |
|
val src: String |
fun asString(): String |
fun exclude(excludeLocation: String): ArtifactRule
Creates a rule excluding the artifacts in the specified location |
|
fun include(src: String): ArtifactRule
Creates an include rule copying the artifact from the specified src path to the same destination fun include(src: String, dst: String): ArtifactRule
Creates an include rule copying the artifact from the specified src path to the given destination |
|
fun parse(s: String): List<ArtifactRule> |