We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f034bcf commit ee17d80Copy full SHA for ee17d80
textCraft/build.gradle.kts
@@ -1,6 +1,7 @@
1
plugins {
2
alias(libs.plugins.android.library)
3
alias(libs.plugins.jetbrains.kotlin.android)
4
+ id("maven-publish")
5
}
6
7
android {
@@ -36,4 +37,19 @@ dependencies {
36
37
implementation(libs.material)
38
39
-}
40
+}
41
+
42
43
+publishing {
44
+ publications {
45
+ create<MavenPublication>("release") {
46
+ groupId = "com.hypersoft.textcraft"
47
+ artifactId = "textcraft"
48
+ version = "1.0.1"
49
50
+ afterEvaluate {
51
+ from(components["release"])
52
+ }
53
54
55
0 commit comments