Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 2 additions & 0 deletions typedrest-serializers-jackson/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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() }

Expand Down
2 changes: 2 additions & 0 deletions typedrest-serializers-moshi/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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() }

Expand Down
2 changes: 2 additions & 0 deletions typedrest/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
description = "TypedRest helps you build type-safe, fluent-style REST API clients."

kotlin.jvmToolchain(21)
tasks.test { useJUnitPlatform() }

Expand Down