mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
61077774fe
commit_hash:37fd7c21c1a5a5a7656a5d6a87dabc3b7b6e5408
21 lines
410 B
Groovy
21 lines
410 B
Groovy
apply from: "${buildscript.sourceFile.parent}/publish-common.gradle"
|
|
|
|
android {
|
|
publishing {
|
|
singleVariant('release') {
|
|
withSourcesJar()
|
|
}
|
|
}
|
|
}
|
|
|
|
afterEvaluate {
|
|
publishing {
|
|
publications {
|
|
release(MavenPublication) {
|
|
from components.release
|
|
version = divkitVersion.releaseLibraryVersion
|
|
}
|
|
}
|
|
}
|
|
}
|