Skip to content

Commit

Permalink
Merge pull request #3 from Aleixo-Dev/feat/setup-build-artifact
Browse files Browse the repository at this point in the history
feat: setup build artifact
  • Loading branch information
aleixo-dev authored Oct 16, 2023
2 parents 4d4e5ab + 4b7dda8 commit 82a3b30
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions progress-view/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id("com.android.library")
id("org.jetbrains.kotlin.android")
id("maven-publish")
}

android {
Expand Down Expand Up @@ -36,6 +37,18 @@ android {
}
}

afterEvaluate {
publishing {
publications {
create<MavenPublication>("release") {
from(components["release"])
groupId = "br.com.nicolas"
artifactId = "progress-view"
}
}
}
}

dependencies {

implementation("androidx.core:core-ktx:1.9.0")
Expand Down

0 comments on commit 82a3b30

Please sign in to comment.