Added missing scripts.

This commit is contained in:
Relintai 2022-07-29 09:22:06 +02:00
parent 0611c7db0d
commit 6225d5e6b5
3 changed files with 98 additions and 1 deletions

View File

@ -17,7 +17,7 @@ plugins {
}
apply from: 'app/config.gradle'
apply from: 'scripts/publish-root.gradle'
//apply from: 'scripts/publish-root.gradle'
allprojects {
repositories {

View File

@ -0,0 +1,58 @@
apply plugin: 'maven-publish'
apply plugin: 'signing'
group = ossrhGroupId
version = PUBLISH_VERSION
afterEvaluate {
publishing {
publications {
templateRelease(MavenPublication) {
from components.templateRelease
// The coordinates of the library, being set from variables that
// we'll set up later
groupId ossrhGroupId
artifactId PUBLISH_ARTIFACT_ID
version PUBLISH_VERSION
// Mostly self-explanatory metadata
pom {
name = PUBLISH_ARTIFACT_ID
description = 'Pandemonium Engine Android Library'
url = 'https://github.com/Relintai/pandemonium_engine'
licenses {
license {
name = 'MIT License'
url = 'https://github.com/Relintai/pandemonium_engine/blob/master/LICENSE.txt'
}
}
developers {
developer {
id = 'Relintai'
name = 'Péter Magyar'
email = 'relintai@protonmail.com'
}
}
// Version control info - if you're using GitHub, follow the
// format as seen here
scm {
connection = 'scm:git:github.com/Relintai/pandemonium_engine.git'
developerConnection = 'scm:git:ssh://github.com/Relintai/pandemonium_engine.git'
url = 'https://github.com/Relintai/pandemonium_engine/tree/master'
}
}
}
}
}
}
signing {
useInMemoryPgpKeys(
rootProject.ext["signing.keyId"],
rootProject.ext["signing.key"],
rootProject.ext["signing.password"],
)
sign publishing.publications
}

View File

@ -0,0 +1,39 @@
// Create variables with empty default values
ext["signing.keyId"] = ''
ext["signing.password"] = ''
ext["signing.key"] = ''
ext["ossrhGroupId"] = ''
ext["ossrhUsername"] = ''
ext["ossrhPassword"] = ''
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["ossrhGroupId"] = System.getenv('OSSRH_GROUP_ID')
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')
}
// Set up Sonatype repository
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/"))
}
}
}