Skip to content

Commit

Permalink
🌟 add maven publish config
Browse files Browse the repository at this point in the history
  • Loading branch information
theapache64 committed Mar 30, 2023
1 parent c980b14 commit 177e63c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions rebugger/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 'maven-publish'
}

android {
Expand Down Expand Up @@ -47,4 +48,17 @@ dependencies {
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

implementation "androidx.compose.runtime:runtime:$compose_version"
}

afterEvaluate {
publishing {
publications {
mavenPublication(MavenPublication) {
from components.release
groupId 'com.github.theapache64'
artifactId 'rebugger'
version '1.0.0-alpha01'
}
}
}
}

0 comments on commit 177e63c

Please sign in to comment.