├── .github ├── release-drafter.yml ├── renovate.json └── workflows │ ├── cd.yaml │ └── jenkins-security-scan.yml ├── .gitignore ├── .mvn ├── extensions.xml └── maven.config ├── CHANGELOG.md ├── Jenkinsfile ├── README.md ├── checkstyle.xml ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── microsoftopentechnologies │ │ └── windowsazurestorage │ │ ├── AzureBlob.java │ │ ├── AzureBlobAction.java │ │ ├── AzureBlobMetadataPair.java │ │ ├── AzureBlobProjectAction.java │ │ ├── AzureBlobProperties.java │ │ ├── AzureStorageBlueArtifact.java │ │ ├── AzureStorageBuilder.java │ │ ├── WAStoragePublisher.java │ │ ├── beans │ │ └── StorageAccountInfo.java │ │ ├── exceptions │ │ └── WAStorageException.java │ │ ├── helper │ │ ├── AzureCredentialsBinding.java │ │ ├── AzureStorageAccount.java │ │ ├── AzureUtils.java │ │ ├── Constants.java │ │ ├── CredentialMigration.java │ │ ├── CredentialRename.java │ │ └── Utils.java │ │ └── service │ │ ├── DownloadFromBuildService.java │ │ ├── DownloadFromContainerService.java │ │ ├── DownloadFromFileService.java │ │ ├── DownloadService.java │ │ ├── StoragePluginService.java │ │ ├── UploadService.java │ │ ├── UploadToBlobService.java │ │ ├── UploadToFileService.java │ │ └── model │ │ ├── DownloadServiceData.java │ │ ├── PartialBlobProperties.java │ │ ├── ServiceData.java │ │ ├── UploadServiceData.java │ │ └── UploadType.java ├── resources │ ├── com │ │ └── microsoftopentechnologies │ │ │ └── windowsazurestorage │ │ │ ├── AzureBlobAction │ │ │ └── index.jelly │ │ │ ├── AzureBlobMetadataPair │ │ │ ├── config.jelly │ │ │ ├── config.properties │ │ │ ├── help-key.html │ │ │ └── help-value.html │ │ │ ├── AzureBlobProjectAction │ │ │ └── jobMain.jelly │ │ │ ├── AzureBlobProperties │ │ │ ├── config.jelly │ │ │ ├── config.properties │ │ │ └── help-detectContentType.html │ │ │ ├── AzureStorageBuilder │ │ │ ├── config.jelly │ │ │ ├── config.properties │ │ │ ├── help-containerName.html │ │ │ ├── help-deleteFromAzureAfterDownload.html │ │ │ ├── help-downloadDirLoc.html │ │ │ ├── help-excludeFilesPattern.html │ │ │ ├── help-fileShare.html │ │ │ ├── help-flattenDirectories.html │ │ │ ├── help-includeArchiveZips.html │ │ │ ├── help-includeFilesPattern.html │ │ │ ├── help-projectName.html │ │ │ └── help-verbose.html │ │ │ ├── Messages.properties │ │ │ ├── WAStoragePublisher │ │ │ ├── config.jelly │ │ │ ├── config.properties │ │ │ ├── global.jelly │ │ │ ├── global.properties │ │ │ └── help-verbose.html │ │ │ └── helper │ │ │ ├── AzureCredentialsBinding │ │ │ ├── config-variables.jelly │ │ │ └── config-variables.properties │ │ │ └── AzureStorageAccount │ │ │ └── credentials.jelly │ ├── global.properties │ ├── index.jelly │ └── lib │ │ └── azure-storage │ │ ├── credentials.js │ │ └── taglib └── webapp │ ├── help-allowAnonymousAccess.html │ ├── help-azureFileShareName.html │ ├── help-azureblobstorage.html │ ├── help-azurefilestorage.html │ ├── help-blobEndPointURL.html │ ├── help-builderSelectstorageaccount.html │ ├── help-cdnEndPointURL.html │ ├── help-cleanContainer.html │ ├── help-cleanVirtualPath.html │ ├── help-containerAccess.html │ ├── help-containerName.html │ ├── help-descriptor.html │ ├── help-doNotFailIfArchivingReturnsNothing.html │ ├── help-doNotUploadIndividualFiles.html │ ├── help-doNotWaitForPreviousBuild.html │ ├── help-excludeFilesPath.html │ ├── help-filesPath.html │ ├── help-onlyUploadModifiedArtifacts.html │ ├── help-removePrefixPath.html │ ├── help-selectstorageaccount.html │ ├── help-storageAccountKey.html │ ├── help-storageAccountName.html │ ├── help-storageaccounts.html │ ├── help-storagecredential.html │ ├── help-uploadArtifactsOnlyIfSuccessful.html │ ├── help-uploadZips.html │ ├── help-virtualPath.html │ └── images │ ├── 24x24 │ └── Azure.png │ └── 48x48 │ └── Azure.png └── test ├── java ├── IntegrationTests │ ├── FileStorageDownloadIT.java │ ├── FileStorageUploadIT.java │ ├── IntegrationTest.java │ ├── WAStorageClientDownloadIT.java │ └── WAStorageClientUploadIT.java └── com │ └── microsoftopentechnologies │ └── windowsazurestorage │ ├── AzureStorageTest.java │ ├── ConfigAsCodeTest.java │ ├── beans │ └── StorageAccountInfoTest.java │ ├── helper │ ├── AzureStorageAccountTest.java │ ├── CredentialMigrationTest.java │ ├── CredentialRenameTest.java │ └── UtilsTest.java │ └── service │ └── UploadServiceTest.java └── resources └── com └── microsoftopentechnologies └── windowsazurestorage ├── configuration-as-code.yml └── helper └── CredentialRenameTest └── testRenameStorageConfig └── credentials.xml /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | _extends: .github 2 | -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/.github/workflows/cd.yaml -------------------------------------------------------------------------------- /.github/workflows/jenkins-security-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/.github/workflows/jenkins-security-scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/.mvn/extensions.xml -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/.mvn/maven.config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/README.md -------------------------------------------------------------------------------- /checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/checkstyle.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/AzureBlob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/AzureBlob.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/AzureBlobAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/AzureBlobAction.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/AzureBlobMetadataPair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/AzureBlobMetadataPair.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/AzureBlobProjectAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/AzureBlobProjectAction.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/AzureBlobProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/AzureBlobProperties.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBlueArtifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBlueArtifact.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/WAStoragePublisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/WAStoragePublisher.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/beans/StorageAccountInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/beans/StorageAccountInfo.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/exceptions/WAStorageException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/exceptions/WAStorageException.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/helper/AzureCredentialsBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/helper/AzureCredentialsBinding.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/helper/AzureStorageAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/helper/AzureStorageAccount.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/helper/AzureUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/helper/AzureUtils.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/helper/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/helper/Constants.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/helper/CredentialMigration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/helper/CredentialMigration.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/helper/CredentialRename.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/helper/CredentialRename.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/helper/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/helper/Utils.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/DownloadFromBuildService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/DownloadFromBuildService.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/DownloadFromContainerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/DownloadFromContainerService.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/DownloadFromFileService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/DownloadFromFileService.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/DownloadService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/DownloadService.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/StoragePluginService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/StoragePluginService.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/UploadService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/UploadService.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/UploadToBlobService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/UploadToBlobService.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/UploadToFileService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/UploadToFileService.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/model/DownloadServiceData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/model/DownloadServiceData.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/model/PartialBlobProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/model/PartialBlobProperties.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/model/ServiceData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/model/ServiceData.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/model/UploadServiceData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/model/UploadServiceData.java -------------------------------------------------------------------------------- /src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/model/UploadType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/java/com/microsoftopentechnologies/windowsazurestorage/service/model/UploadType.java -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobAction/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobAction/index.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobMetadataPair/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobMetadataPair/config.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobMetadataPair/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobMetadataPair/config.properties -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobMetadataPair/help-key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobMetadataPair/help-key.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobMetadataPair/help-value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobMetadataPair/help-value.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobProjectAction/jobMain.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobProjectAction/jobMain.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobProperties/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobProperties/config.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobProperties/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobProperties/config.properties -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobProperties/help-detectContentType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureBlobProperties/help-detectContentType.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/config.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/config.properties -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-containerName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-containerName.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-deleteFromAzureAfterDownload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-deleteFromAzureAfterDownload.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-downloadDirLoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-downloadDirLoc.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-excludeFilesPattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-excludeFilesPattern.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-fileShare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-fileShare.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-flattenDirectories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-flattenDirectories.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-includeArchiveZips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-includeArchiveZips.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-includeFilesPattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-includeFilesPattern.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-projectName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-projectName.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-verbose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/AzureStorageBuilder/help-verbose.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/Messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/Messages.properties -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/WAStoragePublisher/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/WAStoragePublisher/config.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/WAStoragePublisher/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/WAStoragePublisher/config.properties -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/WAStoragePublisher/global.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/WAStoragePublisher/global.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/WAStoragePublisher/global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/WAStoragePublisher/global.properties -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/WAStoragePublisher/help-verbose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/WAStoragePublisher/help-verbose.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/helper/AzureCredentialsBinding/config-variables.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/helper/AzureCredentialsBinding/config-variables.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/helper/AzureCredentialsBinding/config-variables.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/helper/AzureCredentialsBinding/config-variables.properties -------------------------------------------------------------------------------- /src/main/resources/com/microsoftopentechnologies/windowsazurestorage/helper/AzureStorageAccount/credentials.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/com/microsoftopentechnologies/windowsazurestorage/helper/AzureStorageAccount/credentials.jelly -------------------------------------------------------------------------------- /src/main/resources/global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/global.properties -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/resources/lib/azure-storage/credentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/resources/lib/azure-storage/credentials.js -------------------------------------------------------------------------------- /src/main/resources/lib/azure-storage/taglib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/help-allowAnonymousAccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-allowAnonymousAccess.html -------------------------------------------------------------------------------- /src/main/webapp/help-azureFileShareName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-azureFileShareName.html -------------------------------------------------------------------------------- /src/main/webapp/help-azureblobstorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-azureblobstorage.html -------------------------------------------------------------------------------- /src/main/webapp/help-azurefilestorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-azurefilestorage.html -------------------------------------------------------------------------------- /src/main/webapp/help-blobEndPointURL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-blobEndPointURL.html -------------------------------------------------------------------------------- /src/main/webapp/help-builderSelectstorageaccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-builderSelectstorageaccount.html -------------------------------------------------------------------------------- /src/main/webapp/help-cdnEndPointURL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-cdnEndPointURL.html -------------------------------------------------------------------------------- /src/main/webapp/help-cleanContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-cleanContainer.html -------------------------------------------------------------------------------- /src/main/webapp/help-cleanVirtualPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-cleanVirtualPath.html -------------------------------------------------------------------------------- /src/main/webapp/help-containerAccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-containerAccess.html -------------------------------------------------------------------------------- /src/main/webapp/help-containerName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-containerName.html -------------------------------------------------------------------------------- /src/main/webapp/help-descriptor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-descriptor.html -------------------------------------------------------------------------------- /src/main/webapp/help-doNotFailIfArchivingReturnsNothing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-doNotFailIfArchivingReturnsNothing.html -------------------------------------------------------------------------------- /src/main/webapp/help-doNotUploadIndividualFiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-doNotUploadIndividualFiles.html -------------------------------------------------------------------------------- /src/main/webapp/help-doNotWaitForPreviousBuild.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-doNotWaitForPreviousBuild.html -------------------------------------------------------------------------------- /src/main/webapp/help-excludeFilesPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-excludeFilesPath.html -------------------------------------------------------------------------------- /src/main/webapp/help-filesPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-filesPath.html -------------------------------------------------------------------------------- /src/main/webapp/help-onlyUploadModifiedArtifacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-onlyUploadModifiedArtifacts.html -------------------------------------------------------------------------------- /src/main/webapp/help-removePrefixPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-removePrefixPath.html -------------------------------------------------------------------------------- /src/main/webapp/help-selectstorageaccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-selectstorageaccount.html -------------------------------------------------------------------------------- /src/main/webapp/help-storageAccountKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-storageAccountKey.html -------------------------------------------------------------------------------- /src/main/webapp/help-storageAccountName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-storageAccountName.html -------------------------------------------------------------------------------- /src/main/webapp/help-storageaccounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-storageaccounts.html -------------------------------------------------------------------------------- /src/main/webapp/help-storagecredential.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-storagecredential.html -------------------------------------------------------------------------------- /src/main/webapp/help-uploadArtifactsOnlyIfSuccessful.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-uploadArtifactsOnlyIfSuccessful.html -------------------------------------------------------------------------------- /src/main/webapp/help-uploadZips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-uploadZips.html -------------------------------------------------------------------------------- /src/main/webapp/help-virtualPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/help-virtualPath.html -------------------------------------------------------------------------------- /src/main/webapp/images/24x24/Azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/images/24x24/Azure.png -------------------------------------------------------------------------------- /src/main/webapp/images/48x48/Azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/main/webapp/images/48x48/Azure.png -------------------------------------------------------------------------------- /src/test/java/IntegrationTests/FileStorageDownloadIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/test/java/IntegrationTests/FileStorageDownloadIT.java -------------------------------------------------------------------------------- /src/test/java/IntegrationTests/FileStorageUploadIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/test/java/IntegrationTests/FileStorageUploadIT.java -------------------------------------------------------------------------------- /src/test/java/IntegrationTests/IntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/test/java/IntegrationTests/IntegrationTest.java -------------------------------------------------------------------------------- /src/test/java/IntegrationTests/WAStorageClientDownloadIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/test/java/IntegrationTests/WAStorageClientDownloadIT.java -------------------------------------------------------------------------------- /src/test/java/IntegrationTests/WAStorageClientUploadIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/test/java/IntegrationTests/WAStorageClientUploadIT.java -------------------------------------------------------------------------------- /src/test/java/com/microsoftopentechnologies/windowsazurestorage/AzureStorageTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/test/java/com/microsoftopentechnologies/windowsazurestorage/AzureStorageTest.java -------------------------------------------------------------------------------- /src/test/java/com/microsoftopentechnologies/windowsazurestorage/ConfigAsCodeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/test/java/com/microsoftopentechnologies/windowsazurestorage/ConfigAsCodeTest.java -------------------------------------------------------------------------------- /src/test/java/com/microsoftopentechnologies/windowsazurestorage/beans/StorageAccountInfoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/test/java/com/microsoftopentechnologies/windowsazurestorage/beans/StorageAccountInfoTest.java -------------------------------------------------------------------------------- /src/test/java/com/microsoftopentechnologies/windowsazurestorage/helper/AzureStorageAccountTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/test/java/com/microsoftopentechnologies/windowsazurestorage/helper/AzureStorageAccountTest.java -------------------------------------------------------------------------------- /src/test/java/com/microsoftopentechnologies/windowsazurestorage/helper/CredentialMigrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/test/java/com/microsoftopentechnologies/windowsazurestorage/helper/CredentialMigrationTest.java -------------------------------------------------------------------------------- /src/test/java/com/microsoftopentechnologies/windowsazurestorage/helper/CredentialRenameTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/test/java/com/microsoftopentechnologies/windowsazurestorage/helper/CredentialRenameTest.java -------------------------------------------------------------------------------- /src/test/java/com/microsoftopentechnologies/windowsazurestorage/helper/UtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/test/java/com/microsoftopentechnologies/windowsazurestorage/helper/UtilsTest.java -------------------------------------------------------------------------------- /src/test/java/com/microsoftopentechnologies/windowsazurestorage/service/UploadServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/test/java/com/microsoftopentechnologies/windowsazurestorage/service/UploadServiceTest.java -------------------------------------------------------------------------------- /src/test/resources/com/microsoftopentechnologies/windowsazurestorage/configuration-as-code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/test/resources/com/microsoftopentechnologies/windowsazurestorage/configuration-as-code.yml -------------------------------------------------------------------------------- /src/test/resources/com/microsoftopentechnologies/windowsazurestorage/helper/CredentialRenameTest/testRenameStorageConfig/credentials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/azure-storage-plugin/HEAD/src/test/resources/com/microsoftopentechnologies/windowsazurestorage/helper/CredentialRenameTest/testRenameStorageConfig/credentials.xml --------------------------------------------------------------------------------