Skip to content

Commit 8d6656b

Browse files
committed
fix: add group and description to root gradle project for publishing
1 parent cf69d79 commit 8d6656b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ plugins {
66
id "io.github.gradle-nexus.publish-plugin" version "1.1.+"
77
}
88

9+
group "com.mx.path-core"
10+
description "MX Path Core"
911
version "6.0.2" // x-release-please-version
1012

1113
def platformProject = "platform"
@@ -22,8 +24,8 @@ def publishedProjects = [
2224
]
2325

2426
subprojects {
25-
group "com.mx.path-core"
26-
description "MX Path Core"
27+
group rootProject.group
28+
description rootProject.description
2729
version rootProject.version
2830

2931
if (it.name != platformProject) {

0 commit comments

Comments
 (0)