60 lines
2.4 KiB
Groovy
60 lines
2.4 KiB
Groovy
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2022 Siddhesh Patil, Siddroid.com
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
ext["signing.keyId"] = ''
|
|
ext["signing.password"] = ''
|
|
ext["signing.key"] = ''
|
|
ext["ossrhUsername"] = ''
|
|
ext["ossrhPassword"] = ''
|
|
ext["sonatypeStagingProfileId"] = ''
|
|
ext["sonatypeStagingProfileId"] = ''
|
|
|
|
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["signing.keyId"] = System.getenv('SIGNING_KEY_ID')
|
|
ext["signing.password"] = System.getenv('SIGNING_PASSWORD')
|
|
ext["signing.key"] = System.getenv('SIGNING_KEY')
|
|
ext["sonatypeStagingProfileId"] = System.getenv('SONATYPE_STAGING_PROFILE_ID')
|
|
}
|
|
|
|
nexusPublishing {
|
|
repositories {
|
|
sonatype {
|
|
stagingProfileId = sonatypeStagingProfileId
|
|
username = ossrhUsername
|
|
password = ossrhPassword
|
|
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
|
|
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
|
|
}
|
|
}
|
|
} |