We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10ac257 commit b765a1cCopy full SHA for b765a1c
1 file changed
convention-plugins/src/main/kotlin/module.publication.gradle.kts
@@ -8,6 +8,17 @@ plugins {
8
}
9
10
publishing {
11
+ repositories {
12
+ maven {
13
+ name = "GitHubPackages"
14
+ url = uri("https://maven.pkg.github.com/sk-ai-net/skainet")
15
+ credentials {
16
+ username = System.getenv("USERNAME")
17
+ password = System.getenv("TOKEN")
18
+ }
19
+
20
21
22
// Configure all publications
23
publications.withType<MavenPublication> {
24
// Stub javadoc.jar artifact
@@ -19,7 +30,6 @@ publishing {
30
// Provide artifacts information required by Maven Central
31
pom {
32
name.set("skainet - Kotlin Multiplatform library")
-
33
licenses {
34
license {
25
35
name.set("MIT")
0 commit comments