mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
21 lines
390 B
Groovy
21 lines
390 B
Groovy
apply from: "${buildscript.sourceFile.parent}/publish-common.gradle"
|
|
|
|
android {
|
|
publishing {
|
|
singleVariant('release') {
|
|
withSourcesJar()
|
|
}
|
|
}
|
|
}
|
|
|
|
afterEvaluate {
|
|
publishing {
|
|
publications {
|
|
release(MavenPublication) {
|
|
from components.release
|
|
version divkitVersionName
|
|
}
|
|
}
|
|
}
|
|
}
|