28 lines
547 B
Groovy
28 lines
547 B
Groovy
android {
|
|
namespace 'com.google.android.filament.filamat'
|
|
|
|
publishing {
|
|
singleVariant("release") {
|
|
withSourcesJar()
|
|
withJavadocJar()
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation deps.androidx.annotations
|
|
}
|
|
|
|
apply from: rootProject.file('gradle/gradle-mvn-push.gradle')
|
|
|
|
afterEvaluate { project ->
|
|
publishing {
|
|
publications {
|
|
release(MavenPublication) {
|
|
artifactId = POM_ARTIFACT_ID_FULL
|
|
from components.release
|
|
}
|
|
}
|
|
}
|
|
}
|