Skip to content

Commit

Permalink
publish 2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
scwang90 committed Dec 3, 2021
1 parent 010ccb6 commit e452bd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 deletions.
13 changes: 1 addition & 12 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,6 @@ if (new File(file).exists()) {
group = SMART_GROUP
version = SMART_VERSION
if (name.split('-').length > 2) {
// afterEvaluate {
// publish {
// userOrg = SMART_USER
// groupId = group
// artifactId = name
// desc = description
// publishVersion = version
// website = "https://github.com/scwang90/${rootProject.name}"
// }
// }
// apply plugin: 'com.novoda.bintray-release'

apply plugin: 'maven-publish'
apply plugin: 'signing'
Expand Down Expand Up @@ -128,7 +117,7 @@ if (new File(file).exists()) {
return
}
def dependencyNode = dependenciesNode.appendNode('dependency')
dependencyNode.appendNode('groupId', it.group)
dependencyNode.appendNode('groupId', SMART_GROUP_MVN)
dependencyNode.appendNode('artifactId', it.name)
dependencyNode.appendNode('version', it.version)
if (name == "api" || name == "compile") {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ org.gradle.jvmargs=-Xmx1536m

SMART_USER=scwang90
SMART_GROUP=com.scwang.smart
SMART_VERSION=2.0.4
SMART_VERSION=2.0.5
# -SNAPSHOT
SMART_PUBLISH=false
SMART_GROUP_MVN=io.github.scwang90
SMART_EMAIL=[email protected]

signing.keyId=888F6528
signing.password=
signing.secretKeyRingFile=/Users/scwang/.gnupg/secret-rsa.gpg
signing.secretKeyRingFile=/Users/scwang/.gnupg/secret-rsa.gpg

0 comments on commit e452bd2

Please sign in to comment.