mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
37e8580883
8805b28be86540da1230b59f3deff06b20a97292
25 lines
580 B
Groovy
25 lines
580 B
Groovy
apply from: "${buildscript.sourceFile.parent}/publish-common.gradle"
|
|
|
|
tasks.register('sourcesJar', Jar) {
|
|
archiveClassifier = "sources"
|
|
from sourceSets.main.allSource
|
|
}
|
|
|
|
tasks.register('javadocJar', Jar) {
|
|
archiveClassifier = 'javadoc'
|
|
from javadoc.destinationDir
|
|
}
|
|
|
|
afterEvaluate {
|
|
publishing {
|
|
publications {
|
|
release(MavenPublication) {
|
|
artifact sourcesJar
|
|
artifact javadocJar
|
|
from components.java
|
|
version divkitVersion.releaseLibraryVersion
|
|
}
|
|
}
|
|
}
|
|
}
|