From 140d93341e16e7a4f372ad5d3414f7cabc8a8923 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Fri, 14 May 2021 13:13:52 -0700 Subject: [PATCH] "Fix" "typo" that's blocking Android releases (#2312) Summary: Bit of an odd one. Our publishing plugin changed what fields it expect to define the license of the project. That has caused Maven Central to reject our uploads: https://github.com/vanniktech/gradle-maven-publish-plugin/blob/af0de22a5a7ee2efcbaa77756769392e13dd6b38/src/main/kotlin/com/vanniktech/maven/publish/legacy/BaseSetup.kt#L70 I hope this is a temporary "fix". Pull Request resolved: https://github.com/facebook/flipper/pull/2312 Test Plan: Uploaded to my local maven m2 and now the fields are back. Reviewed By: mweststrate Differential Revision: D28446988 Pulled By: passy fbshipit-source-id: 3944198cb73935d60a61dc9f4dc4383108faa6f9 --- gradle.properties | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gradle.properties b/gradle.properties index e50dea541..0f36d1184 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,12 +11,12 @@ POM_URL=https://github.com/facebook/flipper POM_SCM_URL=https://github.com/facebook/flipper.git POM_SCM_CONNECTION=scm:git:https://github.com/facebook/flipper.git POM_SCM_DEV_CONNECTION=scm:git:git@github.com:facebook/flipper.git -POM_LICENSE_NAME=MIT -POM_LICENSE_URL=https://github.com/facebook/flipper/blob/master/LICENSE -POM_LICENSE_DIST=repo +POM_LICENCE_NAME=MIT +POM_LICENCE_URL=https://github.com/facebook/flipper/blob/master/LICENSE +POM_LICENCE_DIST=repo POM_DEVELOPER_ID=facebook POM_DEVELOPER_NAME=facebook -POM_ISSUES_URL = 'https://github.com/facebook/flipper/issues/' +POM_ISSUES_URL=https://github.com/facebook/flipper/issues/ # Shared version numbers LITHO_VERSION=0.39.0