{"id":36703938,"url":"https://github.com/dataliquid/resource-extractor-maven-plugin","last_synced_at":"2026-01-12T11:40:52.125Z","repository":{"id":327112237,"uuid":"1107879664","full_name":"dataliquid/resource-extractor-maven-plugin","owner":"dataliquid","description":"Extract and process resources from artifacts during the build process.","archived":false,"fork":false,"pushed_at":"2026-01-10T09:10:37.000Z","size":50,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"develop","last_synced_at":"2026-01-11T02:53:01.404Z","etag":null,"topics":["artifact-extraction","java","maven-plugin","resource-extraction"],"latest_commit_sha":null,"homepage":null,"language":"Java","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/dataliquid.png","metadata":{"files":{"readme":"README.adoc","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-01T18:19:04.000Z","updated_at":"2026-01-10T09:10:41.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/dataliquid/resource-extractor-maven-plugin","commit_stats":null,"previous_names":["dataliquid/resource-extractor-maven-plugin"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/dataliquid/resource-extractor-maven-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataliquid%2Fresource-extractor-maven-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataliquid%2Fresource-extractor-maven-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataliquid%2Fresource-extractor-maven-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataliquid%2Fresource-extractor-maven-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dataliquid","download_url":"https://codeload.github.com/dataliquid/resource-extractor-maven-plugin/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataliquid%2Fresource-extractor-maven-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28338972,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T10:58:46.209Z","status":"ssl_error","status_checked_at":"2026-01-12T10:58:42.742Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["artifact-extraction","java","maven-plugin","resource-extraction"],"created_at":"2026-01-12T11:40:51.434Z","updated_at":"2026-01-12T11:40:52.120Z","avatar_url":"https://github.com/dataliquid.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"= Resource Extractor Maven Plugin\n\nimage:https://github.com/dataliquid/resource-extractor-maven-plugin/actions/workflows/ci.yml/badge.svg[CI Build,link=https://github.com/dataliquid/resource-extractor-maven-plugin/actions/workflows/ci.yml]\nimage:https://img.shields.io/maven-central/v/com.dataliquid.maven/resource-extractor-maven-plugin.svg[Maven Central,link=https://search.maven.org/artifact/com.dataliquid.maven/resource-extractor-maven-plugin]\nimage:https://img.shields.io/badge/license-Apache%202.0-blue.svg[License,link=https://opensource.org/licenses/Apache-2.0]\nimage:https://img.shields.io/badge/Java-17%2B-blue.svg[Java Version]\nimage:https://img.shields.io/badge/Maven-3.9%2B-blue.svg[Maven Version]\n\nA Maven plugin for extracting resources from JAR dependencies during the build process.\n\n== Usage\n\n[source,xml]\n----\n\u003cplugin\u003e\n    \u003cgroupId\u003ecom.dataliquid.maven\u003c/groupId\u003e\n    \u003cartifactId\u003eresource-extractor-maven-plugin\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.1\u003c/version\u003e\n    \u003cexecutions\u003e\n        \u003cexecution\u003e\n            \u003cgoals\u003e\n                \u003cgoal\u003eextract\u003c/goal\u003e\n            \u003c/goals\u003e\n            \u003cconfiguration\u003e\n                \u003coutputDirectory\u003e${project.build.directory}/extracted\u003c/outputDirectory\u003e\n                \u003cdependencies\u003e\n                    \u003cdependency\u003e\n                        \u003cgroupId\u003ecommons-io\u003c/groupId\u003e\n                        \u003cartifactId\u003ecommons-io\u003c/artifactId\u003e\n                    \u003c/dependency\u003e\n                \u003c/dependencies\u003e\n                \u003cincludes\u003e\n                    \u003cinclude\u003eMETA-INF/*.txt\u003c/include\u003e\n                \u003c/includes\u003e\n            \u003c/configuration\u003e\n        \u003c/execution\u003e\n    \u003c/executions\u003e\n\u003c/plugin\u003e\n----\n\n== Configuration\n\n[cols=\"1,2,1\",options=\"header\"]\n|===\n| Parameter | Description | Default\n\n| `outputDirectory`\n| Target directory for extracted files\n| required\n\n| `dependencies`\n| List of dependencies to extract from\n| -\n\n| `includes`\n| Glob patterns to include\n| all files\n\n| `excludes`\n| Glob patterns to exclude\n| -\n\n| `overwrite`\n| Overwrite existing files\n| `true`\n\n| `flattenStructure`\n| Flatten directory structure\n| `false`\n\n| `scope`\n| Dependency scope (compile, test, etc.)\n| `compile`\n|===\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdataliquid%2Fresource-extractor-maven-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdataliquid%2Fresource-extractor-maven-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdataliquid%2Fresource-extractor-maven-plugin/lists"}