Add archivesBaseName for uniqueness

We do not want to clash with anyone having a module named "compose" or "yoga" downstream.
This commit is contained in:
Jake Wharton
2020-12-30 21:50:22 -05:00
parent a3a6679afa
commit a8cefa92cb
2 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,8 @@
apply plugin: 'org.jetbrains.kotlin.jvm'
apply plugin: 'com.vanniktech.maven.publish'
archivesBaseName = 'mosaic-compose'
sourceSets {
main {
kotlin {

View File

@ -2,6 +2,8 @@ apply plugin: 'dev.nokee.jni-library'
apply plugin: 'java' // jni-library is incompatible with the java-library plugin
apply plugin: 'com.vanniktech.maven.publish'
archivesBaseName = 'mosaic-yoga'
library {
dependencies {
nativeImplementation project(':yoga:jni')