Skip to content

Commit 601796d

Browse files
committed
adds name and description
1 parent cd41c94 commit 601796d

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

build.gradle.kts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ plugins {
2727
id("maven-publish")
2828
id("idea")
2929
id("signing")
30-
id("io.hndrs.publishing-info").version("1.0.0")
30+
id("io.hndrs.publishing-info").version("1.1.0")
3131
}
3232

3333
group = "io.hndrs"
@@ -64,6 +64,7 @@ subprojects {
6464
apply(plugin = "io.hndrs.publishing-info")
6565

6666
publishingInfo {
67+
name = project.name
6768
url = "https://github.com/hndrs/jsonapi-spring-boot-starter"
6869
license = License(
6970
"https://github.com/hndrs/jsonapi-spring-boot-starter/blob/main/LICENSE",
@@ -79,6 +80,10 @@ subprojects {
7980
)
8081
}
8182

83+
java {
84+
withJavadocJar()
85+
}
86+
8287
dependencyManagement {
8388
resolutionStrategy {
8489
cacheChangingModulesFor(0, "seconds")

spring-json-api-starter/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@ dependencies {
55
testImplementation(group = "org.springframework.boot", name = "spring-boot-starter-test")
66
testImplementation(group = "org.springframework.boot", name = "spring-boot-starter-web")
77
}
8+
9+
publishingInfo {
10+
description = "SpringBoot json api response starter"
11+
}

spring-json-api/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ dependencies {
33

44
testImplementation("io.mockk:mockk:1.10.6")
55
}
6+
publishingInfo {
7+
description = "SpringBoot json api response classes and advices"
8+
}

0 commit comments

Comments
 (0)