Skip to content

Commit

Permalink
CI change 6
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterBin committed Jun 3, 2024
1 parent e07212b commit 739695e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
ext {

library = [
groupId : "com.tangem.vico",
groupId : "com.patrykandpatrick.vico",
publishGroupId : "com.tangem.vico",
version_name : "2.0.0-alpha.21-tangem1",
version_code : 1,
target_sdk : 34,
Expand Down
4 changes: 2 additions & 2 deletions vico/compose-m2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ android {
}

namespace = getNamespace(project)
group = "com.patrykandpatrick.vico"
group = library.groupId

publishing {
singleVariant("release") {
Expand All @@ -52,7 +52,7 @@ afterEvaluate {

VicoComposeM2(MavenPublication) {

groupId = library.groupId
groupId = library.publishGroupId
artifactId = getArtifactId(project)
version = project.version
from components.release
Expand Down
4 changes: 2 additions & 2 deletions vico/compose-m3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ android {
}

namespace = getNamespace(project)
group = "com.patrykandpatrick.vico"
group = library.groupId

publishing {

Expand All @@ -53,7 +53,7 @@ afterEvaluate {

VicoComposeM3(MavenPublication) {

groupId = library.groupId
groupId = library.publishGroupId
artifactId = getArtifactId(project)
version = project.version
from components.release
Expand Down
4 changes: 2 additions & 2 deletions vico/compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ android {
}

namespace = getNamespace(project)
group = "com.patrykandpatrick.vico"
group = library.groupId

publishing {

Expand All @@ -53,7 +53,7 @@ afterEvaluate {

VicoCompose(MavenPublication) {

groupId = library.groupId
groupId = library.publishGroupId
artifactId = getArtifactId(project)
version = project.version
from components.release
Expand Down
4 changes: 2 additions & 2 deletions vico/core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ apply from: "$rootDir/common-scripts.gradle"
android {

namespace = getNamespace(project)
group = "com.patrykandpatrick.vico"
group = library.groupId

publishing {

Expand All @@ -44,7 +44,7 @@ afterEvaluate {

VicoCore(MavenPublication) {

groupId = library.groupId
groupId = library.publishGroupId
artifactId = getArtifactId(project)
version = project.version
from components.release
Expand Down

0 comments on commit 739695e

Please sign in to comment.