Skip to content

Commit

Permalink
Merge pull request #7 from canopas/fix-deployment
Browse files Browse the repository at this point in the history
Fix deployment
  • Loading branch information
cp-megh-l authored Jan 2, 2024
2 parents cd50adb + 26698b2 commit 7cc3fa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 2 additions & 2 deletions bottombar/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

ext {
set("PUBLISH_GROUP_ID", "io.github.canopas")
set("PUBLISH_GROUP_ID", "com.canopas.compose-animated-navigationbar")
set("PUBLISH_ARTIFACT_ID", "bottombar")
}

Expand Down Expand Up @@ -65,7 +65,7 @@ android {
dependencies {

implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2")
implementation("androidx.activity:activity-compose:1.8.0")
implementation("androidx.activity:activity-compose:1.8.2")
implementation(platform("androidx.compose:compose-bom:2023.09.00"))
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-graphics")
Expand Down
4 changes: 0 additions & 4 deletions scripts/publish-module.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,16 @@ afterEvaluate {
publishing {
publications {
release(MavenPublication) {
// The coordinates of the library, being set from variables that
// we'll set up later
groupId PUBLISH_GROUP_ID
artifactId PUBLISH_ARTIFACT_ID
version rootProject.ext["publish_version"]

/// Two artifacts, the `aar` (or `jar`) and the sources
if (project.plugins.findPlugin("com.android.library")) {
from components.release
} else {
artifact("$buildDir/libs/${project.getName()}-${version}.jar")
}

// Mostly self-explanatory metadata
pom {
name = PUBLISH_ARTIFACT_ID
description = 'Bottom bar in Jetpack Compose with customizable styles & animations'
Expand Down

0 comments on commit 7cc3fa8

Please sign in to comment.