{"id":23286720,"url":"https://github.com/deviceinsight/azure-blob-upload-maven-plugin","last_synced_at":"2025-08-21T17:32:25.965Z","repository":{"id":51090637,"uuid":"175422547","full_name":"deviceinsight/azure-blob-upload-maven-plugin","owner":"deviceinsight","description":"Maven Plugin that uploads a directory recursively to Azure Blob storage","archived":false,"fork":false,"pushed_at":"2021-05-24T12:26:51.000Z","size":33,"stargazers_count":6,"open_issues_count":1,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-05-07T18:28:12.211Z","etag":null,"topics":["azure","azure-storage","azure-storage-blob","maven","maven-plugin"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deviceinsight.png","metadata":{"files":{"readme":"README.adoc","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-03-13T13:05:34.000Z","updated_at":"2021-05-24T12:26:54.000Z","dependencies_parsed_at":"2022-08-02T15:46:03.052Z","dependency_job_id":null,"html_url":"https://github.com/deviceinsight/azure-blob-upload-maven-plugin","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deviceinsight%2Fazure-blob-upload-maven-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deviceinsight%2Fazure-blob-upload-maven-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deviceinsight%2Fazure-blob-upload-maven-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deviceinsight%2Fazure-blob-upload-maven-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deviceinsight","download_url":"https://codeload.github.com/deviceinsight/azure-blob-upload-maven-plugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230523699,"owners_count":18239447,"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":["azure","azure-storage","azure-storage-blob","maven","maven-plugin"],"created_at":"2024-12-20T02:14:10.105Z","updated_at":"2024-12-20T02:14:10.644Z","avatar_url":"https://github.com/deviceinsight.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"= General\n\nUse this Maven plugin to recursivly upload the contents of a directory to an Azure blob storage container.\nThis is for example useful if you use the \"Static website\" feature for serving web resources.\n\n= Usage\n\nThis plugin is available on Maven Central.\n\nUsing it interactively:\n\n....\nmvn com.deviceinsight.azure:azure-blob-upload-maven-plugin:2.1.0:upload \\\n    -DconnectionString='DefaultEndpointsProtocol=https;AccountName=test;AccountKey=xxx;EndpointSuffix=core.windows.net' \\ \n    -DcontainerName=testcontainer \\\n    -DrootDir=/tmp/contents\n....\n\n`rootDir` is the local directory you want to upload. `connectionString` is the Azure connection string. `containerName` is the container in the \nstorage acount that you want to upload into.\n\nUsing it in your pom.xml:\n\n....\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.deviceinsight\u003c/groupId\u003e\n    \u003cartifactId\u003eazure-blob-upload-maven-plugin\u003c/artifactId\u003e\n    \u003cversion\u003e2.1.0\u003c/version\u003e\n\u003c/dependency\u003e\n....\n\n....\n\u003cbuild\u003e\n  \u003cplugins\u003e\n    ...\n    \u003cplugin\u003e\n      \u003cgroupId\u003ecom.deviceinsight.azure\u003c/groupId\u003e\n      \u003cartifactId\u003eazure-blob-upload-maven-plugin\u003c/artifactId\u003e\n      \u003cversion\u003e2.1.0\u003c/version\u003e\n      \u003cexecutions\u003e\n        \u003cexecution\u003e\n          \u003cid\u003eupload\u003c/id\u003e\n          \u003cphase\u003edeploy\u003c/phase\u003e\n          \u003cgoals\u003e\n            \u003cgoal\u003eupload\u003c/goal\u003e\n          \u003c/goals\u003e\n        \u003c/execution\u003e\n      \u003c/executions\u003e\n      \u003cconfiguration\u003e\n        \u003cconnectionString\u003eDefaultEndpointsProtocol=https;AccountName=someaccountname;AccountKey=somekey;EndpointSuffix=core.windows.net\u003c/connectionString\u003e\n        \u003crootDir\u003esomedir\u003c/rootDir\u003e\n        \u003ccontainerName\u003esomecontainer\u003c/containerName\u003e\n      \u003c/configuration\u003e\n    \u003c/plugin\u003e\n  \u003c/plugins\u003e\n\u003c/build\u003e\n....\n\nExcluding files from upload:\n\n....\n\u003cconfiguration\u003e\n  \u003cexcludes\u003e\n    \u003cexclude\u003eextensions/**/*\u003c/exclude\u003e\n    \u003cexclude\u003e**/*.json\u003c/exclude\u003e\n  \u003c/excludes\u003e\n\u003c/configuration\u003e\n....\n\nOnly including certain files also works:\n\n....\n\u003cconfiguration\u003e\n  \u003cincludes\u003e\n    \u003cinclude\u003e**/*.html\u003c/include\u003e\n  \u003c/includes\u003e\n\u003c/configuration\u003e\n....\n\n= Releasing\n\nThe plugin can be released using:\n\n....\nmvn deploy -Prelease\n....\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeviceinsight%2Fazure-blob-upload-maven-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeviceinsight%2Fazure-blob-upload-maven-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeviceinsight%2Fazure-blob-upload-maven-plugin/lists"}