diff --git a/eng/versioning/version_client.txt b/eng/versioning/version_client.txt index 2cfd9278bb5ab..4859ab8ac899d 100644 --- a/eng/versioning/version_client.txt +++ b/eng/versioning/version_client.txt @@ -203,10 +203,10 @@ com.azure:azure-verticals-agrifood-farming;1.0.0-beta.3;1.0.0-beta.4 com.azure:azure-xml;1.1.0;1.2.0-beta.1 com.azure:perf-test-core;1.0.0-beta.1;1.0.0-beta.1 com.azure:azure-ai-vision-imageanalysis;1.0.0-beta.2;1.0.0-beta.3 -com.azure:identity-test-container;1.0-SNAPSHOT;1.0-SNAPSHOT -com.azure:identity-test-function;1.0-SNAPSHOT;1.0-SNAPSHOT -com.azure:identity-test-vm;1.0-SNAPSHOT;1.0-SNAPSHOT -com.azure:identity-test-webapp;0.0.1-SNAPSHOT;0.0.1-SNAPSHOT +com.azure:identity-test-container;1.0.0-beta.1;1.0.0-beta.1 +com.azure:identity-test-function;1.0.0-beta.1;1.0.0-beta.1 +com.azure:identity-test-vm;1.0.0-beta.1;1.0.0-beta.1 +com.azure:identity-test-webapp;1.0.0-beta.1;1.0.0-beta.1 com.azure:azure-ai-vision-face;1.0.0-beta.1;1.0.0-beta.2 com.azure.spring:azure-monitor-spring-native;1.0.0-beta.1;1.0.0-beta.1 com.azure.spring:azure-monitor-spring-native-test;1.0.0-beta.1;1.0.0-beta.1 diff --git a/sdk/identity/live-test-apps/identity-test-container/Dockerfile b/sdk/identity/live-test-apps/identity-test-container/Dockerfile index 6ead935cd0f84..48b4d658aec41 100644 --- a/sdk/identity/live-test-apps/identity-test-container/Dockerfile +++ b/sdk/identity/live-test-apps/identity-test-container/Dockerfile @@ -14,6 +14,6 @@ RUN git clone https://github.com/Azure/azure-sdk-for-java --single-branch --dept FROM openjdk:17-oracle -COPY target/identity-test-container-1.0-SNAPSHOT-jar-with-dependencies.jar /identity-test.jar +COPY target/identity-test-container-1.0.0-beta.1-jar-with-dependencies.jar /identity-test.jar CMD [ "java", "-version" ] diff --git a/sdk/identity/live-test-apps/identity-test-container/pom.xml b/sdk/identity/live-test-apps/identity-test-container/pom.xml index f298b4edc19cd..77cd56779ab11 100644 --- a/sdk/identity/live-test-apps/identity-test-container/pom.xml +++ b/sdk/identity/live-test-apps/identity-test-container/pom.xml @@ -4,7 +4,7 @@ com.azure identity-test-container - 1.0-SNAPSHOT + 1.0.0-beta.1 jar Azure Identity Java Test Container diff --git a/sdk/identity/live-test-apps/identity-test-function/pom.xml b/sdk/identity/live-test-apps/identity-test-function/pom.xml index 5f4c1afc6d2ed..4f683887b4983 100644 --- a/sdk/identity/live-test-apps/identity-test-function/pom.xml +++ b/sdk/identity/live-test-apps/identity-test-function/pom.xml @@ -4,7 +4,7 @@ com.azure identity-test-function - 1.0-SNAPSHOT + 1.0.0-beta.1 jar Azure Java Functions diff --git a/sdk/identity/live-test-apps/identity-test-vm/pom.xml b/sdk/identity/live-test-apps/identity-test-vm/pom.xml index f11ce2124acdc..113df9e6dbcca 100644 --- a/sdk/identity/live-test-apps/identity-test-vm/pom.xml +++ b/sdk/identity/live-test-apps/identity-test-vm/pom.xml @@ -4,7 +4,7 @@ com.azure identity-test-vm - 1.0-SNAPSHOT + 1.0.0-beta.1 jar Azure Identity Java Test VM diff --git a/sdk/identity/live-test-apps/identity-test-webapp/pom.xml b/sdk/identity/live-test-apps/identity-test-webapp/pom.xml index 0345ef1e6603e..7c55c66702899 100644 --- a/sdk/identity/live-test-apps/identity-test-webapp/pom.xml +++ b/sdk/identity/live-test-apps/identity-test-webapp/pom.xml @@ -10,7 +10,7 @@ com.azure identity-test-webapp - 0.0.1-SNAPSHOT + 1.0.0-beta.1 identity-test-webapp Web App MI Test diff --git a/sdk/identity/test-resources-post.ps1 b/sdk/identity/test-resources-post.ps1 index f10a1feefc7ca..27daf92f0ee9b 100644 --- a/sdk/identity/test-resources-post.ps1 +++ b/sdk/identity/test-resources-post.ps1 @@ -62,7 +62,7 @@ mvn clean install -DskipTests "-Drevapi.skip=true" "-Dcheckstyle.skip=true" "-Dc mvn clean install -DskipTests -f $webappRootPom | Write-Host -az webapp deploy --resource-group $(getVariable('IDENTITY_RESOURCE_GROUP')) --name $(getVariable('IDENTITY_WEBAPP_NAME')) --src-path "$webappRoot/target/identity-test-webapp-0.0.1-SNAPSHOT.jar" --type jar +az webapp deploy --resource-group $(getVariable('IDENTITY_RESOURCE_GROUP')) --name $(getVariable('IDENTITY_WEBAPP_NAME')) --src-path "$webappRoot/target/identity-test-webapp-1.0.0-beta.1.jar" --type jar Write-Host "Building Function App" @@ -88,7 +88,7 @@ Write-Host "Creating storage container" az storage container create --name "vmcontainer" --account-name $DeploymentOutputs['IDENTITY_STORAGE_NAME_1'] --account-key $key | Write-Host Write-Host "Uploading file to storage" -az storage blob upload --container-name "vmcontainer" --file "$vmRoot/target/identity-test-vm-1.0-SNAPSHOT-jar-with-dependencies.jar" --name "testfile.jar" --account-name $DeploymentOutputs['IDENTITY_STORAGE_NAME_1'] --account-key $key | Write-Host +az storage blob upload --container-name "vmcontainer" --file "$vmRoot/target/identity-test-vm-1.0.0-beta.1-jar-with-dependencies.jar" --name "testfile.jar" --account-name $DeploymentOutputs['IDENTITY_STORAGE_NAME_1'] --account-key $key | Write-Host if ($IsMacOS -eq $false) {