Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelavoyan committed Mar 23, 2024
1 parent 836de7e commit 26c07bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions VCL/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ afterEvaluate {
artifactId getArtifactId()

// define rc version name
// def vers = getVersionName()
// def tempVersion = getVersionName()
// def rcSuffix = rootProject.ext.rcSuffix
// version = "${vers}-${rcSuffix}"
// version = "${tempVersion}-${rcSuffix}"
version getVersionName()

// Two artifacts, the `aar` (or `jar`) and the sources
Expand Down
4 changes: 2 additions & 2 deletions publish-core.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ nexusPublishing {
}

// Create custom tasks for publishing
task publishRelease(dependsOn: [':VCL:publishReleasePublicationToSonatypeRepository'])
task publishRc(dependsOn: [':VCL:publishRcPublicationToSonatypeRepository'])
tasks.register('publishRelease') { dependsOn[':VCL:publishReleasePublicationToSonatypeRepository'] }
tasks.register('publishRc') { dependsOn[':VCL:publishRcPublicationToSonatypeRepository'] }

0 comments on commit 26c07bd

Please sign in to comment.