Skip to content

Commit

Permalink
Revert some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ruixhuang committed Jun 13, 2024
1 parent a016449 commit 9d815bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cartera/publishLocal.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project.afterEvaluate {
publishToMavenLocal {
def groupId = LIBRARY_GROUP
def artifactId = LIBRARY_ARTIFACT_ID
def versionName = LIBRARY_VERSION_NAME
def versionName = LIBRARY_VERSION_NAME + "-local"
def debugSuffix = "-debug"
def releaseSuffix = "-release"
publishing {
Expand All @@ -13,14 +13,14 @@ project.afterEvaluate {
// artifact(sourceJar)
setGroupId groupId
setArtifactId artifactId
version versionName // + releaseSuffix
version versionName + releaseSuffix
}
LibraryDebug(MavenPublication) {
from components.debug
// artifact(sourceJar)
setGroupId groupId
setArtifactId artifactId
version versionName // + debugSuffix
version versionName + debugSuffix
}
}
publications.all {
Expand Down

0 comments on commit 9d815bb

Please sign in to comment.