From 32a461c81d32e31b174c0c8e172ba294b7b4c256 Mon Sep 17 00:00:00 2001 From: Matt Creaser Date: Fri, 16 Dec 2022 13:43:25 -0400 Subject: [PATCH] Remove unused version and group properties These are set explicitly in the pom, and these values being present breaks using the framework as an included build --- configuration/publishing.gradle | 3 --- 1 file changed, 3 deletions(-) diff --git a/configuration/publishing.gradle b/configuration/publishing.gradle index 8ef26c3c8a..711f899858 100644 --- a/configuration/publishing.gradle +++ b/configuration/publishing.gradle @@ -17,9 +17,6 @@ apply plugin: 'signing' apply plugin: 'maven-publish' -version = project.ext.VERSION_NAME -group = POM_GROUP - def isReleaseBuild() { return VERSION_NAME.contains("SNAPSHOT") == false }