initial commit, 4.5 stable
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
This commit is contained in:
177
platform/android/java/scripts/publish-module.gradle
Normal file
177
platform/android/java/scripts/publish-module.gradle
Normal file
@@ -0,0 +1,177 @@
|
||||
apply plugin: 'maven-publish'
|
||||
apply plugin: 'signing'
|
||||
|
||||
group = ossrhGroupId
|
||||
version = PUBLISH_VERSION
|
||||
|
||||
afterEvaluate {
|
||||
publishing {
|
||||
publications {
|
||||
templateDebug(MavenPublication) {
|
||||
from components.templateDebug
|
||||
|
||||
// The coordinates of the library, being set from variables that
|
||||
// we'll set up later
|
||||
groupId ossrhGroupId
|
||||
artifactId DEBUG_PUBLISH_ARTIFACT_ID
|
||||
version PUBLISH_VERSION
|
||||
|
||||
// Mostly self-explanatory metadata
|
||||
pom {
|
||||
name = DEBUG_PUBLISH_ARTIFACT_ID
|
||||
description = 'Godot Engine Android Library - (Debug) Template Build'
|
||||
url = 'https://godotengine.org/'
|
||||
licenses {
|
||||
license {
|
||||
name = 'MIT License'
|
||||
url = 'https://github.com/godotengine/godot/blob/master/LICENSE.txt'
|
||||
}
|
||||
}
|
||||
developers {
|
||||
developer {
|
||||
id = 'm4gr3d'
|
||||
name = 'Fredia Huya-Kouadio'
|
||||
email = 'fhuyakou@gmail.com'
|
||||
}
|
||||
developer {
|
||||
id = 'reduz'
|
||||
name = 'Juan Linietsky'
|
||||
email = 'reduzio@gmail.com'
|
||||
}
|
||||
developer {
|
||||
id = 'akien-mga'
|
||||
name = 'Rémi Verschelde'
|
||||
email = 'rverschelde@gmail.com'
|
||||
}
|
||||
developer {
|
||||
id = 'godotengine'
|
||||
name = 'Godot Engine contributors'
|
||||
email = 'contact@godotengine.org'
|
||||
}
|
||||
}
|
||||
|
||||
// Version control info - if you're using GitHub, follow the
|
||||
// format as seen here
|
||||
scm {
|
||||
connection = 'scm:git:github.com/godotengine/godot.git'
|
||||
developerConnection = 'scm:git:ssh://github.com/godotengine/godot.git'
|
||||
url = 'https://github.com/godotengine/godot/tree/master'
|
||||
}
|
||||
}
|
||||
}
|
||||
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 = 'Godot Engine Android Library - Template Build'
|
||||
url = 'https://godotengine.org/'
|
||||
licenses {
|
||||
license {
|
||||
name = 'MIT License'
|
||||
url = 'https://github.com/godotengine/godot/blob/master/LICENSE.txt'
|
||||
}
|
||||
}
|
||||
developers {
|
||||
developer {
|
||||
id = 'm4gr3d'
|
||||
name = 'Fredia Huya-Kouadio'
|
||||
email = 'fhuyakou@gmail.com'
|
||||
}
|
||||
developer {
|
||||
id = 'reduz'
|
||||
name = 'Juan Linietsky'
|
||||
email = 'reduzio@gmail.com'
|
||||
}
|
||||
developer {
|
||||
id = 'akien-mga'
|
||||
name = 'Rémi Verschelde'
|
||||
email = 'rverschelde@gmail.com'
|
||||
}
|
||||
developer {
|
||||
id = 'godotengine'
|
||||
name = 'Godot Engine contributors'
|
||||
email = 'contact@godotengine.org'
|
||||
}
|
||||
}
|
||||
|
||||
// Version control info - if you're using GitHub, follow the
|
||||
// format as seen here
|
||||
scm {
|
||||
connection = 'scm:git:github.com/godotengine/godot.git'
|
||||
developerConnection = 'scm:git:ssh://github.com/godotengine/godot.git'
|
||||
url = 'https://github.com/godotengine/godot/tree/master'
|
||||
}
|
||||
}
|
||||
}
|
||||
toolsRelease(MavenPublication) {
|
||||
from components.editorRelease
|
||||
|
||||
// The coordinates of the library, being set from variables that
|
||||
// we'll set up later
|
||||
groupId ossrhGroupId
|
||||
artifactId TOOLS_PUBLISH_ARTIFACT_ID
|
||||
version PUBLISH_VERSION
|
||||
|
||||
// Mostly self-explanatory metadata
|
||||
pom {
|
||||
name = TOOLS_PUBLISH_ARTIFACT_ID
|
||||
description = 'Godot Engine Tools Android Library - Editor Build'
|
||||
url = 'https://godotengine.org/'
|
||||
licenses {
|
||||
license {
|
||||
name = 'MIT License'
|
||||
url = 'https://github.com/godotengine/godot/blob/master/LICENSE.txt'
|
||||
}
|
||||
}
|
||||
developers {
|
||||
developer {
|
||||
id = 'm4gr3d'
|
||||
name = 'Fredia Huya-Kouadio'
|
||||
email = 'fhuyakou@gmail.com'
|
||||
}
|
||||
developer {
|
||||
id = 'reduz'
|
||||
name = 'Juan Linietsky'
|
||||
email = 'reduzio@gmail.com'
|
||||
}
|
||||
developer {
|
||||
id = 'akien-mga'
|
||||
name = 'Rémi Verschelde'
|
||||
email = 'rverschelde@gmail.com'
|
||||
}
|
||||
developer {
|
||||
id = 'godotengine'
|
||||
name = 'Godot Engine contributors'
|
||||
email = 'contact@godotengine.org'
|
||||
}
|
||||
}
|
||||
|
||||
// Version control info - if you're using GitHub, follow the
|
||||
// format as seen here
|
||||
scm {
|
||||
connection = 'scm:git:github.com/godotengine/godot.git'
|
||||
developerConnection = 'scm:git:ssh://github.com/godotengine/godot.git'
|
||||
url = 'https://github.com/godotengine/godot/tree/master'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
signing {
|
||||
useInMemoryPgpKeys(
|
||||
rootProject.ext["signing.keyId"],
|
||||
rootProject.ext["signing.key"],
|
||||
rootProject.ext["signing.password"],
|
||||
)
|
||||
sign publishing.publications
|
||||
}
|
38
platform/android/java/scripts/publish-root.gradle
Normal file
38
platform/android/java/scripts/publish-root.gradle
Normal file
@@ -0,0 +1,38 @@
|
||||
// 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://ossrh-staging-api.central.sonatype.com/service/local/"))
|
||||
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user