This is an automated email from the ASF dual-hosted git repository.
snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 01857067 Allow Gradle included builds to use a different group ID
(#796)
01857067 is described below
commit 01857067697e89f8e5113e54fd9156abb231caa9
Author: Robert Stupp <[email protected]>
AuthorDate: Thu Jan 16 18:25:27 2025 +0100
Allow Gradle included builds to use a different group ID (#796)
When adding an included build to the Polaris main repo, the (Maven) group
ID _must_ be different. This change allows sharing (symling) the
`gradle.properties` file with an included build (#785 in this case).
---
gradle.properties | 1 -
settings.gradle.kts | 5 ++++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/gradle.properties b/gradle.properties
index 9e1de428..97762d80 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -16,7 +16,6 @@
# specific language governing permissions and limitations
# under the License.
#
-group=org.apache.polaris
# enable the Gradle build cache
org.gradle.caching=true
diff --git a/settings.gradle.kts b/settings.gradle.kts
index e23cf56c..707592ea 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -72,4 +72,7 @@ dependencyResolutionManagement {
}
}
-gradle.beforeProject { version = baseVersion }
+gradle.beforeProject {
+ version = baseVersion
+ group = "org.apache.polaris"
+}