Rename packages from com.financialforce to io.github.apexdevtools#26
Merged
Conversation
This aligns package names with Maven group ID io.github.apex-dev-tools. Changes: - com.financialforce.oparser → io.github.apexdevtools.oparser - com.financialforce.types → io.github.apexdevtools.types - com.financialforce.types.base → io.github.apexdevtools.types.base All package declarations, imports, and documentation updated. Added .claude/ to .gitignore. Fixes #22 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
apex-parser is only used in test code (AntlrParser.scala for test comparisons), not in production code, so it should be a devDependency. This also resolves the Dependabot alert for brace-expansion (transitive dependency) since it's now only used in development. Closes #25 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
kjonescertinia
approved these changes
Mar 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Renames all packages from
com.financialforce.*toio.github.apexdevtools.*to align with the Maven group IDio.github.apex-dev-tools.This addresses Peter's feedback on issue #22 - the packages should match the organization namespace, not reference the old Certinia/FinancialForce branding.
Also fixes issue #25 by moving
apex-parsertodevDependenciessince it's only used in test code.Changes
com.financialforce.oparser→io.github.apexdevtools.oparsercom.financialforce.types→io.github.apexdevtools.typescom.financialforce.types.base→io.github.apexdevtools.types.base@apexdevtools/apex-parserfromdependenciestodevDependenciesinjs/npm/package.jsonAll package declarations, imports, and documentation have been updated. Added
.claude/to.gitignore.Breaking Changes
This is a major breaking change requiring consumers to update their imports:
Test plan
sbt test- all tests passfinancialforcereferences outside copyright messagesFixes #22
Closes #25
🤖 Generated with Claude Code