Skip to content

Commit ee17d80

Browse files
committed
TextCraft
1 parent f034bcf commit ee17d80

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

textCraft/build.gradle.kts

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
plugins {
22
alias(libs.plugins.android.library)
33
alias(libs.plugins.jetbrains.kotlin.android)
4+
id("maven-publish")
45
}
56

67
android {
@@ -36,4 +37,19 @@ dependencies {
3637
implementation(libs.material)
3738

3839

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

Comments
 (0)