mirror of
https://github.com/AdrianKuta/Expandable-RecyclerView.git
synced 2025-07-02 07:17:59 +02:00
feat: Upgrade to build gradle 7.0.2
This commit is contained in:
43
scripts/publish-root.gradle
Normal file
43
scripts/publish-root.gradle
Normal file
@ -0,0 +1,43 @@
|
||||
// Create variables with empty default values
|
||||
ext["ossrhUsername"] = ''
|
||||
ext["ossrhPassword"] = ''
|
||||
ext["sonatypeStagingProfileId"] = ''
|
||||
ext["signing.keyId"] = ''
|
||||
ext["signing.password"] = ''
|
||||
ext["signing.key"] = ''
|
||||
ext["snapshot"] = ''
|
||||
|
||||
File secretPropsFile = project.rootProject.file('local.properties')
|
||||
if (secretPropsFile.exists()) {
|
||||
// Read local.properties file first if it exists
|
||||
Properties p = new Properties()
|
||||
new FileInputStream(secretPropsFile).withCloseable { is -> p.load(is) }
|
||||
p.each { name, value -> ext[name] = value }
|
||||
} else {
|
||||
// Use system environment variables
|
||||
ext["ossrhUsername"] = System.getenv('OSSRH_USERNAME')
|
||||
ext["ossrhPassword"] = System.getenv('OSSRH_PASSWORD')
|
||||
ext["sonatypeStagingProfileId"] = System.getenv('SONATYPE_STAGING_PROFILE_ID')
|
||||
ext["signing.keyId"] = System.getenv('SIGNING_KEY_ID')
|
||||
ext["signing.password"] = System.getenv('SIGNING_PASSWORD')
|
||||
ext["signing.key"] = System.getenv('SIGNING_KEY')
|
||||
ext["snapshot"] = System.getenv('SNAPSHOT')
|
||||
}
|
||||
|
||||
//if (snapshot) {
|
||||
// ext["rootVersionName"] = Configuration.snapshotVersionName
|
||||
//} else {
|
||||
// ext["rootVersionName"] = Configuration.versionName
|
||||
//}
|
||||
|
||||
// Set up Sonatype repository
|
||||
nexusPublishing {
|
||||
repositories {
|
||||
sonatype {
|
||||
stagingProfileId = sonatypeStagingProfileId
|
||||
username = ossrhUsername
|
||||
password = ossrhPassword
|
||||
//version = rootVersionName
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user