From e9eeba6610ba4756534d7275db5e621010798d70 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Mon, 23 Jan 2023 15:50:54 +0100 Subject: [PATCH] Gradle: Fix the syntax for POM SCM connection URLs See https://maven.apache.org/pom.html#SCM. --- gradle.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index 86233071e..bc0662c37 100644 --- a/gradle.properties +++ b/gradle.properties @@ -24,11 +24,11 @@ GROUP=com.yalantis POM_DESCRIPTION=Android Library for cropping images POM_URL=https://github.com/Yalantis/uCrop POM_SCM_URL=https://github.com/Yalantis/uCrop -POM_SCM_CONNECTION=scm:git@github.com/Yalantis/uCrop.git -POM_SCM_DEV_CONNECTION=scm:git@github.com/Yalantis/uCrop.git +POM_SCM_CONNECTION=scm:git:https://github.com/Yalantis/uCrop.git +POM_SCM_DEV_CONNECTION=scm:git:git@github.com/Yalantis/uCrop.git POM_LICENCE_NAME=The Apache Software License, Version 2.0 POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0 POM_LICENCE_DIST=repo POM_DEVELOPER_ID=yalantis POM_DEVELOPER_NAME=Yalantis -android.useAndroidX=true \ No newline at end of file +android.useAndroidX=true