chore: deprecate repo — consolidate into maven-index#3
Open
tangcent wants to merge 1 commit into
Open
Conversation
Per .spec/maven-indexer-redesign (Req 6.1-6.3): this repo is retired. All source, tests, CI, scripts, skills, and the bundled CFR jar are removed. The maven-indexer-cli npm package is still published — now from maven-index/packages/cli (https://github.com/tangcent/maven-index). Surviving stub: - README.md: DEPRECATED banner + migration pointers - package.json: frozen (private:true, deprecated:true) - ARCHITECTURE.md: path-by-path migration map to maven-index Engine unification rationale: the CLI and MCP indexer.ts had drifted by 374 diff-lines; every fix had to land twice. Both now import one @maven-indexer/engine.
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
Per
.spec/maven-indexer-redesign(Req 6.1–6.3): this repository is retired. Active development has consolidated into the unifiedmaven-indexmonorepo (formerlymaven-indexer-mcp).This PR removes all source, tests, CI/CD, scripts, skills, and the bundled CFR jar, leaving a minimal deprecation stub.
What this repo becomes (4 files)
README.md—⚠️ DEPRECATEDbanner + migration pointers tomaven-indexpackage.json— frozen ("private": true,"deprecated": true)ARCHITECTURE.md— path-by-path migration map (src/core/→packages/engine/src/,src/commands/→packages/cli/src/commands/, …).gitignoreWhat stays alive
maven-indexer-cli)maven-indexer-clinpm packagemaven-index/packages/cli—npm install -g maven-indexer-cli/npx maven-indexer-clikeep working unchangedWhy?
Two near-identical
indexer.tsfiles (CLI’s and MCP’s) had drifted by 374 diff-lines; every fix had to land twice. The unification merges them into one@maven-indexer/engineimported by both faces.Companion PR (the active redesign): tangcent/maven-indexer-mcp#9