Skip to content

Commit 2d3a24b

Browse files
committed
Fix:tm:
1 parent 5c51573 commit 2d3a24b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

build.gradle.kts

+10
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,14 @@ publishing {
4242
url = uri(baseUri + if (version.toString().endsWith("-SNAPSHOT")) "/snapshots" else "/releases")
4343
}
4444
}
45+
46+
publications {
47+
create<MavenPublication>("maven") {
48+
groupId = project.group.toString()
49+
artifactId = project.name
50+
version = project.version.toString()
51+
52+
from(components["java"])
53+
}
54+
}
4555
}

0 commit comments

Comments
 (0)