From dea0cce3368ff80821a7819bfc19c8762271682f Mon Sep 17 00:00:00 2001 From: Zach Klippenstein Date: Tue, 12 May 2020 11:25:10 -0700 Subject: [PATCH] Add workaround for Nexus issue with sha256/512 checksums. See https://github.com/gradle/gradle/issues/11308. --- gradle.properties | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gradle.properties b/gradle.properties index cf6d83a2..f3dd0091 100644 --- a/gradle.properties +++ b/gradle.properties @@ -19,6 +19,9 @@ android.useAndroidX=true # Required for ViewBinding. android.enableJetifier=true +# Required to publish to Nexus (see https://github.com/gradle/gradle/issues/11308) +systemProp.org.gradle.internal.publish.checksums.insecure=true + GROUP=com.squareup.workflow VERSION_NAME=0.27.0-SNAPSHOT