Files
AutoJs6/libs/markwon-syntax-highlight-4.6.2/build.gradle.kts

9 lines
344 B
Kotlin

"markwon-syntax-highlight-4.6.2.aar"
.let { path ->
rootProject.extra["configurationName"].toString().let { name ->
configurations.maybeCreate(name)
file(path).takeIf { it.exists() }?.also {
artifacts.add(name, it)
} ?: throw Exception("File not found: \"$path\"")
}
}