2019-10-15 10:30:08 -07:00
|
|
|
/*
|
2022-10-04 13:59:32 -07:00
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2018-10-24 03:09:58 -07:00
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*/
|
|
|
|
|
2023-05-31 14:48:05 -07:00
|
|
|
plugins {
|
2023-10-04 19:57:14 -07:00
|
|
|
id("com.android.library") version "8.2.0-beta06" apply false
|
|
|
|
id("com.android.application") version "8.2.0-beta06" apply false
|
2023-05-31 15:22:21 -07:00
|
|
|
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
|
2017-02-23 04:57:16 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
2023-05-31 15:22:21 -07:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "com.facebook.yoga"
|
|
|
|
|
|
|
|
if (project.hasProperty("USE_SNAPSHOT") && project.property("USE_SNAPSHOT").toBoolean()) {
|
|
|
|
version = getProperty("VERSION_NAME") + "-SNAPSHOT"
|
|
|
|
} else {
|
|
|
|
version = getProperty("VERSION_NAME")
|
|
|
|
}
|
|
|
|
|
|
|
|
def sonatypeUsername = findProperty("SONATYPE_USERNAME")?.toString()
|
|
|
|
def sonatypePassword = findProperty("SONATYPE_PASSWORD")?.toString()
|
|
|
|
|
|
|
|
nexusPublishing {
|
|
|
|
repositories {
|
|
|
|
sonatype {
|
|
|
|
username.set(sonatypeUsername)
|
|
|
|
password.set(sonatypePassword)
|
|
|
|
}
|
|
|
|
}
|
2017-02-23 04:57:16 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|