Skip to content

Commit e332219

Browse files
authored
Port #965 to 2.x branch (#970) (#971)
1 parent 5fc82c7 commit e332219

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

spek-dsl/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,10 @@ publishing {
9797
getByName("kotlinMultiplatform", MavenPublication::class) {
9898
groupId = "org.spekframework.spek2"
9999
artifactId = "spek-dsl"
100+
pom {
101+
name.set("Spek DSL")
102+
description.set("Kotlin metadata module for spek-dsl")
103+
}
100104
}
101105
}
102106
}

spek-runtime/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ kotlin {
7878
implementation(Dependencies.kotlinCoroutinesCore)
7979
}
8080
}
81-
81+
8282
jvm {
8383
compilations["main"].defaultSourceSet {
8484
dependencies {
@@ -132,6 +132,10 @@ publishing {
132132
getByName("kotlinMultiplatform", MavenPublication::class) {
133133
groupId = "org.spekframework.spek2"
134134
artifactId = "spek-runtime"
135+
pom {
136+
name.set("Spek Runtime")
137+
description.set("Kotlin metadata module for spek-runtime")
138+
}
135139
}
136140
}
137141
}

0 commit comments

Comments
 (0)