Skip to content

Commit

Permalink
- Updated gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
razaghimahdi committed Mar 26, 2023
1 parent 3881ada commit 10a1879
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions raining-light/build.gradle
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 'kotlin-android'
id 'maven-publish'
}

android {
Expand Down Expand Up @@ -38,4 +39,18 @@ android {
dependencies {
implementation "androidx.compose.ui:ui:$compose_version"
implementation "androidx.compose.material:material:$compose_version"
}
}

afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release

groupId = 'com.github.razaghimahdi'
artifactId = 'raining-light'
version = '1.0.0'
}
}
}
}

0 comments on commit 10a1879

Please sign in to comment.