File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 11plugins {
22 alias(libs.plugins.android.library)
33 alias(libs.plugins.jetbrains.kotlin.android)
4+ `maven- publish`
45}
56
67android {
@@ -32,8 +33,31 @@ android {
3233 }
3334}
3435
36+ publishing {
37+ publications {
38+ register<MavenPublication >(" release" ) {
39+ groupId = " org.edx"
40+ artifactId = " segment-analytics"
41+ version = " 1.0.0"
42+
43+ afterEvaluate {
44+ from(components[" release" ])
45+ }
46+
47+ // Include metadata if needed
48+ pom {
49+ name = " Segment Analytics Plugin"
50+ description =
51+ " This plugin aims to provide Segment analytics support for OpenEdX Application"
52+ url = " https://github.com/farhan-arshad-dev/edx-mobile-android-segment-analytics"
53+ }
54+ }
55+ }
56+ }
57+
3558dependencies {
3659 implementation(libs.foundation)
60+
3761 implementation(libs.segment.analytics.kotlin)
3862 implementation(libs.segment.destination.firebase)
3963 implementation(libs.braze.segment.kotlin)
You can’t perform that action at this time.
0 commit comments