We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a873db1 commit cbc359fCopy full SHA for cbc359f
jitpack.yml
@@ -0,0 +1,2 @@
1
+jdk:
2
+ - openjdk11
library/build.gradle.kts
@@ -1,6 +1,7 @@
plugins {
alias(libs.plugins.android.library)
3
alias(libs.plugins.android.kotlin)
4
+ id("maven-publish")
5
}
6
android {
7
namespace = "ir.alirezaivaz.numberstoletters"
@@ -25,4 +26,22 @@ android {
25
26
kotlinOptions {
27
jvmTarget = "11"
28
-}
29
+ publishing {
30
+ singleVariant("release") {
31
+ withSourcesJar()
32
+ withJavadocJar()
33
+ }
34
35
+}
36
+publishing {
37
+ publications {
38
+ register<MavenPublication>("release") {
39
+ groupId = "ir.alirezaivaz"
40
+ artifactId = "numberstoletters"
41
+ version = "2.0.0"
42
+ afterEvaluate {
43
+ from(components["release"])
44
45
46
47
0 commit comments