12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- apply plugin: 'maven'
- apply plugin: 'signing'
- def PUBLISH_GROUP_ID = "io.github.yyxxgame.sdk"
- def PUBLISH_ARTIFACT_ID = "eyuangame-sdk-ktx"
- def PUBLISH_VERSION = "1.0.0-alpha4"
- Properties properties = new Properties()
- properties.load(project.rootProject.file('local.properties').newDataInputStream())
- def ossrhUsername = properties.getProperty("SonaType.user")
- def ossrhPassword = properties.getProperty("SonaType.pwd")
- task androidSourcesJar(type: Jar) {
- archiveClassifier.set('source')
- if
- from
- } else
- form
- }
- }
- artifacts
- archives
- }
- signing
- required
- gradle.taskGraph.hasTask("uploadArchives")
- }
- sign
- }
- uploadArchives
- repositories
- mavenDeployer
- beforeDeployment
- MavenDeployment
- }
- repository(url: "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/") {
- authentication(userName: ossrhUsername, password: ossrhPassword)
- }
- snapshotRepository(url: "https://s01.oss.sonatype.org/content/repositories/snapshots/") {
- authentication(userName: ossrhUsername, password: ossrhPassword)
- }
- pom.groupId
- pom.artifactId
- pom.version
- pom.project
- name
- packaging
- description
- url
- scm
- connection
- developerConnection
- url
- }
- licenses
- license
- name
- url
- }
- }
- developers
- developer
- id
- name
- email
- }
- }
- }
- }
- }
- }
|