# Apache Commons Maven artifact extractor

**Use case:** 

Extract Maven Central metadata, versions, and POM dependencies for Apache Commons artifacts.

## Input

```json
{
  "coordinates": [
    "org.springframework:spring-core"
  ],
  "artifactUrls": [
    "https://search.maven.org/artifact/org.apache.commons/commons-lang3"
  ],
  "maxArtifacts": 1,
  "includeDependencies": true,
  "versionHistoryLimit": 10
}
```

## Output

```json
{
  "coordinate": {
    "label": "Coordinate"
  },
  "latestVersion": {
    "label": "Latest version"
  },
  "packaging": {
    "label": "Packaging"
  },
  "timestamp": {
    "label": "Published at"
  },
  "versionCount": {
    "label": "Version count"
  },
  "dependencies": {
    "label": "POM dependencies",
    "format": "array"
  },
  "dependencyStatus": {
    "label": "Dependency status"
  },
  "sourceUrl": {
    "label": "Maven Central URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Checked at"
  }
}
```

## About this Actor

This example demonstrates how to use [Maven Central Artifact & Dependency Monitor](https://apify.com/automation-lab/maven-central-artifact-dependency-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/maven-central-artifact-dependency-monitor) to learn more, explore other use cases, and run it yourself.