We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afcbf45 commit 6b17722Copy full SHA for 6b17722
build.gradle.kts
@@ -4,10 +4,11 @@ plugins {
4
kotlin("jvm") version "1.8.10"
5
id("org.jetbrains.kotlinx.kover") version "0.7.0-Alpha"
6
kotlin("plugin.serialization") version "1.8.10"
7
+ `maven-publish`
8
}
9
10
group = "nl.sanderdijkhuis"
-version = "0.1.0-SNAPSHOT"
11
+version = "0.4.0"
12
13
repositories {
14
mavenCentral()
@@ -42,3 +43,11 @@ koverReport {
42
43
44
45
46
+
47
+publishing {
48
+ publications {
49
+ create<MavenPublication>("maven") {
50
+ from(components["java"])
51
+ }
52
53
+}
0 commit comments