Skip to content

Commit 9326376

Browse files
committed
corrected for jitpack
1 parent a83a950 commit 9326376

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,15 @@ tasks.test {
3333

3434
kotlin {
3535
jvmToolchain(8)
36-
3736
}
3837

3938
publishing {
4039
publications {
41-
create("mavenJava", MavenPublication::class) {
40+
create<MavenPublication>("mavenJava") {
4241
from(components["java"])
42+
groupId = project.group.toString()
43+
artifactId = project.name
44+
version = project.version.toString()
4345
}
4446
}
4547
}

0 commit comments

Comments
 (0)