Skip to content
Closed
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
10 changes: 10 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ plugins {
id("com.gradle.plugin-publish") version "2.1.1"
}

// HACK: Gradle overwrites all customized wrapper configurations,
// Meaning we have to include them in buildscript to make them persistent.
// (Source: https://github.com/gradle/gradle/issues/36172)
tasks.wrapper {
networkTimeout = 10000
retries = 3
retryBackOffMs = 1000
validateDistributionUrl = true
}

group = property("project_group") as String
version = property("project_version") as String
description = property("project_description") as String
Expand Down