diff --git a/build.gradle.kts b/build.gradle.kts index 06e60fd1..ef9fec25 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -65,7 +65,7 @@ subprojects { pom { name.set(project.name) - description.set("TypedRest helps you build type-safe, fluent-style REST API clients.") + description.set(provider { project.description }) url.set("https://typedrest.net/") licenses { diff --git a/typedrest-serializers-jackson/build.gradle.kts b/typedrest-serializers-jackson/build.gradle.kts index 538f9ad1..6c5d9483 100644 --- a/typedrest-serializers-jackson/build.gradle.kts +++ b/typedrest-serializers-jackson/build.gradle.kts @@ -1,3 +1,5 @@ +description = "Adds support for serializing using Jackson (https://github.com/FasterXML/jackson) instead of kotlinx.serialization." + kotlin.jvmToolchain(21) tasks.test { useJUnitPlatform() } diff --git a/typedrest-serializers-moshi/build.gradle.kts b/typedrest-serializers-moshi/build.gradle.kts index 3fec738b..3bfebd9b 100644 --- a/typedrest-serializers-moshi/build.gradle.kts +++ b/typedrest-serializers-moshi/build.gradle.kts @@ -1,3 +1,5 @@ +description = "Adds support for serializing using Moshi (https://github.com/square/moshi) instead of kotlinx.serialization." + kotlin.jvmToolchain(21) tasks.test { useJUnitPlatform() } diff --git a/typedrest/build.gradle.kts b/typedrest/build.gradle.kts index 0eef394f..f091bff6 100644 --- a/typedrest/build.gradle.kts +++ b/typedrest/build.gradle.kts @@ -1,3 +1,5 @@ +description = "TypedRest helps you build type-safe, fluent-style REST API clients." + kotlin.jvmToolchain(21) tasks.test { useJUnitPlatform() }