mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00
16 lines
340 B
Groovy
16 lines
340 B
Groovy
plugins {
|
|
id 'maven-publish'
|
|
}
|
|
|
|
afterEvaluate {
|
|
publishing {
|
|
publications {
|
|
myLocalPublication(MavenPublication) {
|
|
artifact(file('lib.aar'))
|
|
groupId 'io.anyproto'
|
|
artifactId 'anytype-heart-android'
|
|
version = '2.3.0'
|
|
}
|
|
}
|
|
}
|
|
}
|