diff --git a/rebugger/build.gradle b/rebugger/build.gradle index 0450a9f..f74aa0e 100644 --- a/rebugger/build.gradle +++ b/rebugger/build.gradle @@ -1,6 +1,7 @@ plugins { id 'com.android.library' id 'org.jetbrains.kotlin.android' + id 'maven-publish' } android { @@ -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' + } + } + } } \ No newline at end of file