Skip to content

Commit 0b10e14

Browse files
committed
Per-project descriptions
1 parent cac3bd3 commit 0b10e14

4 files changed

Lines changed: 7 additions & 1 deletion

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ subprojects {
6565

6666
pom {
6767
name.set(project.name)
68-
description.set("TypedRest helps you build type-safe, fluent-style REST API clients.")
68+
description.set(provider { project.description })
6969
url.set("https://typedrest.net/")
7070

7171
licenses {

typedrest-serializers-jackson/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
description = "Adds support for serializing using Jackson (https://github.com/FasterXML/jackson) instead of kotlinx.serialization."
2+
13
kotlin.jvmToolchain(21)
24
tasks.test { useJUnitPlatform() }
35

typedrest-serializers-moshi/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
description = "Adds support for serializing using Moshi (https://github.com/square/moshi) instead of kotlinx.serialization."
2+
13
kotlin.jvmToolchain(21)
24
tasks.test { useJUnitPlatform() }
35

typedrest/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
description = "TypedRest helps you build type-safe, fluent-style REST API clients."
2+
13
kotlin.jvmToolchain(21)
24
tasks.test { useJUnitPlatform() }
35

0 commit comments

Comments
 (0)