Skip to content

Conversation

@shahar-biron
Copy link
Collaborator

@shahar-biron shahar-biron commented Oct 27, 2025

Description

Changes the Maven groupId from org.springframework.data to com.falkordb to enable publishing to Maven Central.

Changes

  • Updated groupId in pom.xml from org.springframework.data to com.falkordb

Why

The previous release attempts failed because we don't have authorization to publish under the org.springframework.data namespace, which requires Spring project approval.

FalkorDB controls the com.falkordb namespace on Maven Central, so this change will allow successful publication.

Dependency Usage

Users will now include the dependency as:

<dependency>
    <groupId>com.falkordb</groupId>
    <artifactId>spring-data-falkordb</artifactId>
    <version>1.0.0</version>
</dependency>

The package names and Java imports remain unchanged.

Summary by CodeRabbit

  • Chores
    • Updated Maven module coordinates. The artifact groupId has been changed, requiring dependency declaration updates for users of this module.

This enables publishing to Maven Central under the FalkorDB namespace,
which we have permissions for. The org.springframework.data namespace
requires Spring project authorization.
@coderabbitai
Copy link

coderabbitai bot commented Oct 27, 2025

Walkthrough

The Maven project's groupId coordinate has been updated from org.springframework.data to com.falkordb in the root POM file. This changes the published artifact's Maven group identifier while preserving all other configuration, dependencies, and version information.

Changes

Cohort / File(s) Summary
Maven Configuration
pom.xml
Updated <groupId> from org.springframework.data to com.falkordb

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

  • Straightforward coordinate change with no logic, dependency, or structural modifications

Poem

🐰 A Maven hop to FalkorDB,
The group ID shifts with grace so free,
From SpringData's spring to Falkor's call,
Our project finds its home at last—
A simple change, yet meaningful for all! 🌟

Pre-merge checks and finishing touches

❌ Failed checks (1 warning)
Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. You can run @coderabbitai generate docstrings to improve docstring coverage.
✅ Passed checks (2 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title Check ✅ Passed The pull request title "Change groupId to com.falkordb for Maven Central publishing" directly and accurately describes the main change in the changeset. The PR modifies pom.xml to update the Maven groupId from org.springframework.data to com.falkordb, and the title captures both the specific change and its purpose. The title is concise (59 characters), clear, free of vague terms or noise, and provides sufficient information for a developer scanning the repository history to quickly understand that this is about updating Maven coordinates for publishing purposes.
✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch feature/change-groupid-to-falkordb

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 2c08f2f and ea2d9e8.

📒 Files selected for processing (1)
  • pom.xml (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
  • GitHub Check: Tests (Java 17)
  • GitHub Check: Tests (Java 21)

</parent>

<groupId>org.springframework.data</groupId>
<groupId>com.falkordb</groupId>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

✓ Correct groupId change for Maven Central publishing.

The Maven groupId has been cleanly updated to com.falkordb to align with the FalkorDB namespace that is approved for Maven Central publishing. The parent groupId (org.springframework.data.build) correctly remains unchanged, as it references an external Spring Data parent POM, not the project's own coordinates.

Since this coordinate change may be referenced in downstream build configurations, CI/CD pipelines, or consumer documentation, verify that no other files in the repository (e.g., build scripts, GitHub Actions workflows, module imports, or README examples) hardcode the old org.springframework.data:spring-data-falkordb coordinates:


🏁 Script executed:

#!/bin/bash
# Search for references to the old groupId coordinates across the repository
rg -i 'org\.springframework\.data.*spring-data-falkordb' --type=xml --type=yaml --type=md --type=txt --type=adoc -n

Length of output: 28



---

🏁 Script executed:

```shell
#!/bin/bash
# Search for references to the old groupId coordinates across the repository
# Removed invalid 'adoc' file type
rg -i 'org\.springframework\.data.*spring-data-falkordb' --type=xml --type=yaml --type=md --type=txt -n

Length of output: 296


🏁 Script executed:

#!/bin/bash
# Also search for just the old groupId pattern more broadly
rg 'org\.springframework\.data' -n

Length of output: 45472


Update README files to reflect the new Maven groupId.

The pom.xml groupId change to com.falkordb is correct, but documentation files were not updated. README.md and SPRING_DATA_FALKORDB_README.md still reference the old org.springframework.data groupId in dependency examples, which will cause build failures for users:

  • README.md (lines 4, 33, 49): Update Maven Central badge URL and dependency snippets to use com.falkordb:spring-data-falkordb
  • SPRING_DATA_FALKORDB_README.md (line 20): Update groupId to com.falkordb
🤖 Prompt for AI Agents
In pom.xml line 28 and across docs: update README.md (lines 4, 33, 49) and
SPRING_DATA_FALKORDB_README.md (line 20) to reflect the new Maven groupId
com.falkordb; change the Maven Central badge URL in README.md to reference
com.falkordb:spring-data-falkordb and update all dependency snippets in both
README files to use groupId com.falkordb and artifactId spring-data-falkordb
(i.e., replace occurrences of org.springframework.data with com.falkordb and
ensure the dependency coordinates match the new pom).

@shahar-biron shahar-biron merged commit 4a4fea6 into main Oct 27, 2025
15 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants