rhubarb-lip-sync/rhubarb-for-after-effects/build.gradle.kts

18 lines
320 B
Plaintext
Raw Normal View History

plugins {
base
}
val distsDirName = convention.getPlugin(BasePluginConvention::class).distsDirName
var distDirectory = File(project.buildDir, distsDirName)
tasks {
val copy by creating(Copy::class) {
from(listOf("Rhubarb Lip Sync.jsx", "README.adoc"))
into(distDirectory)
}
assemble {
dependsOn(copy)
}
}