Skip to content

Commit d117d86

Browse files
committed
specify the artifact id
1 parent d90a1cc commit d117d86

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

imageCensorship/build.gradle.kts

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,36 @@ if ((project.findProperty("RELEASE_SIGNING_ENABLED")?.toString() ?: "true").toBo
119119
sign(publishing.publications)
120120
}
121121
}
122+
123+
mavenPublishing {
124+
coordinates(
125+
artifactId = "kmp-image-censorship",
126+
)
127+
128+
pom {
129+
name.set("KMP-Image-Censorship")
130+
description.set("KMP-Image-Censorship.")
131+
url.set("https://github.com/mejdi14/KMP-Image-Censorship")
132+
133+
licenses {
134+
license {
135+
name.set("Apache-2.0")
136+
url.set("https://www.apache.org/licenses/LICENSE-2.0.txt")
137+
distribution.set("repo")
138+
}
139+
}
140+
scm {
141+
url.set("https://github.com/mejdi14/KMP-Image-Censorship")
142+
connection.set("scm:git:git://github.com/mejdi14/KMP-Image-Censorship.git")
143+
developerConnection.set("scm:git:ssh://git@github.com/mejdi14/KMP-Image-Censorship.git")
144+
}
145+
developers {
146+
developer {
147+
id.set("mejdi14")
148+
name.set("mejdi hafiene")
149+
url.set("https://github.com/mejdi14/")
150+
email.set("mejdihafiane@gmail.com")
151+
}
152+
}
153+
}
154+
}

0 commit comments

Comments
 (0)