Last active
April 21, 2021 07:25
-
-
Save zsmb13/bc5957f7d0072742d9c0c2f6b704b3e4 to your computer and use it in GitHub Desktop.
Basic MavenCentral script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'maven-publish' | |
apply plugin: 'signing' | |
task androidSourcesJar(type: Jar) { | |
archiveClassifier.set('sources') | |
if (project.plugins.findPlugin("com.android.library")) { | |
from android.sourceSets.main.java.srcDirs | |
from android.sourceSets.main.kotlin.srcDirs | |
} else { | |
from sourceSets.main.java.srcDirs | |
from sourceSets.main.kotlin.srcDirs | |
} | |
} | |
artifacts { | |
archives androidSourcesJar | |
archives javadocJar | |
} | |
group = PUBLISH_GROUP_ID | |
version = PUBLISH_VERSION | |
ext["signing.keyId"] = '' | |
ext["signing.password"] = '' | |
ext["signing.secretKeyRingFile"] = '' | |
ext["ossrhUsername"] = '' | |
ext["ossrhPassword"] = '' | |
ext["sonatypeStagingProfileId"] = '' | |
File secretPropsFile = project.rootProject.file('local.properties') | |
if (secretPropsFile.exists()) { | |
Properties p = new Properties() | |
p.load(new FileInputStream(secretPropsFile)) | |
p.each { name, value -> | |
ext[name] = value | |
} | |
} else { | |
ext["signing.keyId"] = System.getenv('SIGNING_KEY_ID') | |
ext["signing.password"] = System.getenv('SIGNING_PASSWORD') | |
ext["signing.secretKeyRingFile"] = System.getenv('SIGNING_SECRET_KEY_RING_FILE') | |
ext["ossrhUsername"] = System.getenv('OSSRH_USERNAME') | |
ext["ossrhPassword"] = System.getenv('OSSRH_PASSWORD') | |
ext["sonatypeStagingProfileId"] = System.getenv('SONATYPE_STAGING_PROFILE_ID') | |
} | |
publishing { | |
publications { | |
release(MavenPublication) { | |
groupId PUBLISH_GROUP_ID | |
artifactId PUBLISH_ARTIFACT_ID | |
version PUBLISH_VERSION | |
if (project.plugins.findPlugin("com.android.library")) { | |
artifact("$buildDir/outputs/aar/${project.getName()}-release.aar") | |
} else { | |
artifact("$buildDir/libs/${project.getName()}-${version}.jar") | |
} | |
artifact androidSourcesJar | |
pom { | |
name = PUBLISH_ARTIFACT_ID | |
description = 'Stream Chat official Android SDK' | |
url = 'https://github.com/getstream/stream-chat-android' | |
licenses { | |
license { | |
name = 'Stream License' | |
url = 'https://github.com/GetStream/stream-chat-android/blob/master/LICENSE' | |
} | |
} | |
developers { | |
developer { | |
id = 'zsmb13' | |
name = 'Marton Braun' | |
email = '[email protected]' | |
} | |
// Other devs... | |
} | |
scm { | |
connection = 'scm:git:github.com/getstream/stream-chat-android.git' | |
developerConnection = 'scm:git:ssh://github.com/getstream/stream-chat-android.git' | |
url = 'https://github.com/getstream/stream-chat-android/tree/main' | |
} | |
withXml { | |
def dependenciesNode = asNode().appendNode('dependencies') | |
project.configurations.implementation.allDependencies.each { | |
def dependencyNode = dependenciesNode.appendNode('dependency') | |
dependencyNode.appendNode('groupId', it.group) | |
dependencyNode.appendNode('artifactId', it.name) | |
dependencyNode.appendNode('version', it.version) | |
} | |
} | |
} | |
} | |
} | |
repositories { | |
maven { | |
name = "sonatype" | |
url = "https://oss.sonatype.org/service/local/staging/deploy/maven2/" | |
credentials { | |
username ossrhUsername | |
password ossrhPassword | |
} | |
} | |
} | |
} | |
signing { | |
sign publishing.publications | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment