{"id":15994169,"url":"https://github.com/knutwalker/latest-maven-version","last_synced_at":"2026-01-11T03:59:02.916Z","repository":{"id":37894215,"uuid":"287374963","full_name":"knutwalker/latest-maven-version","owner":"knutwalker","description":null,"archived":false,"fork":false,"pushed_at":"2023-03-01T22:15:19.000Z","size":251,"stargazers_count":0,"open_issues_count":8,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-24T20:11:51.461Z","etag":null,"topics":["hacktoberfest","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/knutwalker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-08-13T20:34:38.000Z","updated_at":"2021-10-02T07:53:55.000Z","dependencies_parsed_at":"2024-10-27T16:39:22.546Z","dependency_job_id":null,"html_url":"https://github.com/knutwalker/latest-maven-version","commit_stats":{"total_commits":90,"total_committers":6,"mean_commits":15.0,"dds":0.5,"last_synced_commit":"e024fa49012dc81b736d5aec225e62807e416ced"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knutwalker%2Flatest-maven-version","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knutwalker%2Flatest-maven-version/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knutwalker%2Flatest-maven-version/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knutwalker%2Flatest-maven-version/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/knutwalker","download_url":"https://codeload.github.com/knutwalker/latest-maven-version/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246777833,"owners_count":20832032,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest","rust"],"created_at":"2024-10-08T07:06:46.492Z","updated_at":"2026-01-11T03:59:02.866Z","avatar_url":"https://github.com/knutwalker.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# latest-maven-version\n\nCheck Maven Central for the latest version(s) of some maven coordinates.\n\n## Building\n\n### Prerequisites\n\nThis tool is build with Rust so you need to have a rust toolchain and cargo installed.\nIf you don't, please visit [https://rustup.rs/](https://rustup.rs/) and follow their instructions.\n\n### Building\n\nThe preferred way is to run:\n\n```rust\nmake install\n```\nIf you do not have a fairly recent make (on macOS, homebrew can install a newer version),\nor don't want to use make, you can also run `cargo install --path .`.\n\n## Usage\n\nRun `latest-maven-version --help` for an overview of all available options.\n\nThe main usage is by providing maven coordinates in the form of `groupId:artifact`, followed by multiple `:version` qualifiers.\nThese version qualifier are [Semantic Version Ranges](https://www.npmjs.com/package/semver#advanced-range-syntax).\nFor each of the provided versions, the latest available version on maven central is printed.\n\n#### Default version\n\nThe version ranges can be left out, in which case the latest overall version is printed.\n\n#### Multiple Version ranges\n\nYou can also enter multiple coordinates, each with their own versions to check against.\nThe result is printed after all versions were checked successfully.\n\n#### Pre Release Versions\n\nPre-releases can be included with the `--include-pre-releases` flag (or `-i` for short).\n\n#### Version overrides\n\nThe versions are matched in order and a single version can only be matched by one qualifier.\nPrevious matches will – depending on the range – consume all versions that would have also been matched by later qualifiers.\nTry to define the qualifiers in the order from most restrictive to least.\n\n## Examples\n\nMatching against minor-compatible releases.\n\n    $ latest-maven-version org.neo4j.gds:proc:~1.1:~1.3:1\n    Latest version(s) for org.neo4j.gds:proc:\n    Latest version matching ~1.1: 1.1.4\n    Latest version matching ~1.3: 1.3.1\n    Latest version matching ^1: 1.2.3\n\n\nMatching against major compatible releases. Note that `1.3` does not produce any match, as it is already covered by `1.1`.\n\n    $ latest-maven-version org.neo4j.gds:proc:1.1:1.3:1\n    Latest version(s) for org.neo4j.gds:proc:\n    Latest version matching ^1.1: 1.3.1\n    No version matching ^1.3\n    Latest version matching ^1: 1.0.0\n\n\nInclusion of pre releases.\n\n    $ latest-maven-version org.neo4j.gds:proc:~1.1:~1.3:1 --include-pre-releases\n    Latest version(s) for org.neo4j.gds:proc:\n    Latest version matching ~1.1: 1.1.4\n    Latest version matching ~1.3: 1.3.1\n    Latest version matching ^1: 1.4.0-alpha02\n\n\nDefault version.\n\n    $ latest-maven-version org.neo4j.gds:proc\n    Latest version(s) for org.neo4j.gds:proc:\n    Latest version matching *: 1.3.1\n\n    $ latest-maven-version org.neo4j.gds:proc --include-pre-releases\n    Latest version(s) for org.neo4j.gds:proc:\n    Latest version matching *: 1.4.0-alpha02\n\n\nMultiple checks.\n\n    $ latest-maven-version org.neo4j.gds:proc org.neo4j:neo4j\n    Latest version(s) for org.neo4j.gds:proc:\n    Latest version matching *: 1.3.1\n    Latest version(s) for org.neo4j:neo4j:\n    Latest version matching *: 4.1.1\n\n\n\nLicense: MIT OR Apache-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknutwalker%2Flatest-maven-version","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fknutwalker%2Flatest-maven-version","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknutwalker%2Flatest-maven-version/lists"}