check_maven_version_exists
Verify if a specific version of a Maven dependency exists in the Maven Central Repository. Input the dependency coordinates along with the version to confirm its availability.
Instructions
Check if a specific version of a Maven dependency exists
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dependency | Yes | Maven coordinate in format "groupId:artifactId[:version][:packaging][:classifier]" (e.g. "org.springframework:spring-core" or "org.springframework:spring-core:5.3.20:jar") | |
version | No | Version to check if not included in dependency string |
Input Schema (JSON Schema)
{
"properties": {
"dependency": {
"description": "Maven coordinate in format \"groupId:artifactId[:version][:packaging][:classifier]\" (e.g. \"org.springframework:spring-core\" or \"org.springframework:spring-core:5.3.20:jar\")",
"type": "string"
},
"version": {
"description": "Version to check if not included in dependency string",
"type": "string"
}
},
"required": [
"dependency"
],
"type": "object"
}