123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- apply plugin: 'maven-publish'
- apply plugin: 'signing'
- ext {
- PUBLISH_GROUP_ID = 'io.github.yyxxgame.sdk'
- PUBLISH_ARTIFACT_ID = 'eyuangame-sdk-ktx'
- PUBLISH_VERSION = '1.0.3'
- }
- 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
- }
- exclude
- exclude
- }
- publishing
- publications
- release(MavenPublication)
-
-
- groupId
- artifactId
- version
-
- artifact("$buildDir/outputs/aar/${project.getName()}-release.aar")
- artifact
-
- pom
- name
- description
-
- url
- licenses
- license
-
- name
- url
- }
- }
- developers
- developer
- id
- name
- email
- }
- }
-
- scm
-
- connection
- developerConnection
-
- url
- }
-
-
- withXml
- def
- for
- if || ||
- break
- }
- def
- dependencyNode.appendNode('groupId', node.group)
- dependencyNode.appendNode('artifactId', node.name)
- dependencyNode.appendNode('version', node.version)
- }
- }
- }
- }
- }
- repositories
-
- maven
-
-
- name
- def
- def
-
-
- url
-
- credentials
- username
- password
- }
- }
- }
- }
- signing
- sign
- }
- publishReleasePublicationToMavencentralRepository.dependsOn(assemble)
|