diff --git a/cmake-modules/FolderList.cmake b/cmake-modules/FolderList.cmake index 7f2f91045..5dda0fdb3 100644 --- a/cmake-modules/FolderList.cmake +++ b/cmake-modules/FolderList.cmake @@ -2,40 +2,39 @@ macro(GetFolderList project) message ("project found ${project}") message ("FLAG VALUE : ${FETCH_SOURCE_DEPS}") if(${project} STREQUAL CERTIFICATES) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/identity azure-identity) + DownloadDepVersion(sdk/core azure-core 1.5.0) + DownloadDepVersion(sdk/identity azure-identity 1.1.0) elseif(${project} STREQUAL IDENTITY) - DownloadDepVersion(sdk/core azure-core) + DownloadDepVersion(sdk/core azure-core 1.2.0) elseif(${project} STREQUAL SECRETS) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/identity azure-identity) + DownloadDepVersion(sdk/core azure-core 1.5.0) + DownloadDepVersion(sdk/identity azure-identity 1.1.0) elseif(${project} STREQUAL KEYS) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/identity azure-identity) + DownloadDepVersion(sdk/core azure-core 1.5.0) + DownloadDepVersion(sdk/identity azure-identity 1.1.0) elseif(${project} STREQUAL ADMINISTRATION) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/identity azure-identity) + DownloadDepVersion(sdk/core azure-core 1.5.0) + DownloadDepVersion(sdk/identity azure-identity 1.1.0) elseif(${project} STREQUAL STORAGE_COMMON) - DownloadDepVersion(sdk/core azure-core) + DownloadDepVersion(sdk/core azure-core 1.9.0) elseif(${project} STREQUAL STORAGE_BLOBS) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common) + DownloadDepVersion(sdk/core azure-core 1.8.0) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.1) elseif(${project} STREQUAL STORAGE_FILES_DATALAKE) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common) - DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs) + DownloadDepVersion(sdk/core azure-core 1.8.0) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.1) + DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.7.0) elseif(${project} STREQUAL STORAGE_FILES_SHARES) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common) + DownloadDepVersion(sdk/core azure-core 1.9.0) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.2) elseif(${project} STREQUAL STORAGE_QUEUES) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common) + DownloadDepVersion(sdk/core azure-core 1.5.0) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.3) elseif(${project} STREQUAL EVENTHUBS) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/core azure-core-amqp) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common) - DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs) - elseif(${project} STREQUAL STORAGE_FILES_DATALAKE) + DownloadDepVersion(sdk/core azure-core 1.10.1) + DownloadDepVersion(sdk/core azure-core-amqp 1.0.0-beta.1) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.3) + DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.8.0) endif() list(REMOVE_DUPLICATES BUILD_FOLDERS) endmacro()