From 11843909d11126598abe3e1d875343137e9c75b0 Mon Sep 17 00:00:00 2001 From: Shawn Fang Date: Mon, 18 Mar 2024 11:58:06 -0700 Subject: [PATCH 1/7] test if add-reads is enough --- sdk/communication/azure-communication-identity/pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sdk/communication/azure-communication-identity/pom.xml b/sdk/communication/azure-communication-identity/pom.xml index f6e2a623bcb0d..739eca0ebbd51 100644 --- a/sdk/communication/azure-communication-identity/pom.xml +++ b/sdk/communication/azure-communication-identity/pom.xml @@ -56,6 +56,8 @@ --add-opens com.azure.communication.identity/com.azure.communication.identity=ALL-UNNAMED --add-opens com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED + --add-reads com.azure.communication.identity=com.azure.core.http.jdk + --add-reads com.azure.communication.identity=com.azure.core.http.vertx From 6832f195cf8cdd52f5a31cbdd4e1aa792284435d Mon Sep 17 00:00:00 2001 From: Shawn Fang Date: Mon, 18 Mar 2024 14:07:00 -0700 Subject: [PATCH 2/7] use common variable --- eng/pipelines/templates/stages/platform-matrix.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/eng/pipelines/templates/stages/platform-matrix.json b/eng/pipelines/templates/stages/platform-matrix.json index 672b982e45c24..d89661584da18 100644 --- a/eng/pipelines/templates/stages/platform-matrix.json +++ b/eng/pipelines/templates/stages/platform-matrix.json @@ -67,13 +67,17 @@ "TestOptions": "" }, { - "Agent": { "ubuntu-20.04": { "OSVmImage": "MMSUbuntu20.04", "Pool": "azsdk-pool-mms-ubuntu-2004-general" } }, + "Agent": { + "ubuntu-20.04": { "OSVmImage": "env:LINUXVMIMAGE", "Pool": "env:LINUXPOOL" } + }, "JavaTestVersion": "1.17", "AZURE_TEST_HTTP_CLIENTS": "JdkHttpClientProvider", "TestFromSource": false }, { - "Agent": { "ubuntu-20.04": { "OSVmImage": "MMSUbuntu20.04", "Pool": "azsdk-pool-mms-ubuntu-2004-general" } }, + "Agent": { + "ubuntu-20.04": { "OSVmImage": "env:LINUXVMIMAGE", "Pool": "env:LINUXPOOL" } + }, "JavaTestVersion": "1.17", "AZURE_TEST_HTTP_CLIENTS": "VertxAsyncHttpClientProvider", "TestFromSource": false From 5b154669fead8bba73be4370d3a8ae8b7440b7c8 Mon Sep 17 00:00:00 2001 From: Shawn Fang Date: Tue, 19 Mar 2024 09:57:34 -0700 Subject: [PATCH 3/7] testing by using add-exports --- sdk/communication/azure-communication-identity/pom.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sdk/communication/azure-communication-identity/pom.xml b/sdk/communication/azure-communication-identity/pom.xml index 739eca0ebbd51..8afedb51f80e2 100644 --- a/sdk/communication/azure-communication-identity/pom.xml +++ b/sdk/communication/azure-communication-identity/pom.xml @@ -56,8 +56,7 @@ --add-opens com.azure.communication.identity/com.azure.communication.identity=ALL-UNNAMED --add-opens com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED - --add-reads com.azure.communication.identity=com.azure.core.http.jdk - --add-reads com.azure.communication.identity=com.azure.core.http.vertx + --add-exports com.azure.core/com.azure.core.implementation.http=ALL-UNNAMED From b3bc60b6139c28db5cb1c683368d8e6d797e6b0d Mon Sep 17 00:00:00 2001 From: Shawn Fang Date: Wed, 20 Mar 2024 22:45:59 -0700 Subject: [PATCH 4/7] add export the core-implementaton-http and add reads jdk and vertx --- sdk/communication/azure-communication-identity/pom.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sdk/communication/azure-communication-identity/pom.xml b/sdk/communication/azure-communication-identity/pom.xml index 8afedb51f80e2..5b2166cd7e257 100644 --- a/sdk/communication/azure-communication-identity/pom.xml +++ b/sdk/communication/azure-communication-identity/pom.xml @@ -54,9 +54,13 @@ false + --add-exports com.azure.core/com.azure.core.implementation.http=ALL-UNNAMED + --add-opens com.azure.communication.identity/com.azure.communication.identity=ALL-UNNAMED --add-opens com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED - --add-exports com.azure.core/com.azure.core.implementation.http=ALL-UNNAMED + + --add-reads com.azure.communication.identity=com.azure.core.http.jdk + --add-reads com.azure.communication.identity=com.azure.core.http.vertx From 115c5674f467f9be301370aecd185fd40117f381 Mon Sep 17 00:00:00 2001 From: Shawn Fang Date: Wed, 20 Mar 2024 23:44:15 -0700 Subject: [PATCH 5/7] add dependencies --- .../azure-communication-identity/pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/sdk/communication/azure-communication-identity/pom.xml b/sdk/communication/azure-communication-identity/pom.xml index 5b2166cd7e257..68e82a7b41d46 100644 --- a/sdk/communication/azure-communication-identity/pom.xml +++ b/sdk/communication/azure-communication-identity/pom.xml @@ -123,6 +123,19 @@ 1.11.4 test + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + + From 1ccfcbed2124d9bfca4bc4812873edfd90c29af0 Mon Sep 17 00:00:00 2001 From: Shawn Fang Date: Thu, 21 Mar 2024 10:37:23 -0700 Subject: [PATCH 6/7] test with only dependency added --- .../azure-communication-identity/pom.xml | 28 +++++++++++-------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/sdk/communication/azure-communication-identity/pom.xml b/sdk/communication/azure-communication-identity/pom.xml index 68e82a7b41d46..2bd99e0d28bcd 100644 --- a/sdk/communication/azure-communication-identity/pom.xml +++ b/sdk/communication/azure-communication-identity/pom.xml @@ -54,13 +54,8 @@ false - --add-exports com.azure.core/com.azure.core.implementation.http=ALL-UNNAMED - --add-opens com.azure.communication.identity/com.azure.communication.identity=ALL-UNNAMED --add-opens com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED - - --add-reads com.azure.communication.identity=com.azure.core.http.jdk - --add-reads com.azure.communication.identity=com.azure.core.http.vertx @@ -123,12 +118,6 @@ 1.11.4 test - - com.azure - azure-core-http-jdk-httpclient - 1.0.0-beta.11 - test - com.azure azure-core-http-vertx @@ -170,4 +159,21 @@ + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + From 484f5788aacc7aefc50d037b075582271006bcd2 Mon Sep 17 00:00:00 2001 From: Shawn Fang Date: Wed, 27 Mar 2024 18:29:10 -0700 Subject: [PATCH 7/7] Add vertx and jdk httpclient to all SDKs that uses okhttpclient --- .../azure-security-attestation/pom.xml | 23 +++++++++++++++++ .../pom.xml | 23 +++++++++++++++++ .../azure-communication-callingserver/pom.xml | 23 +++++++++++++++++ .../azure-communication-chat/pom.xml | 23 +++++++++++++++++ .../azure-communication-email/pom.xml | 23 +++++++++++++++++ .../azure-communication-identity/pom.xml | 9 +++---- .../azure-communication-jobrouter/pom.xml | 23 +++++++++++++++++ .../azure-communication-messages/pom.xml | 23 +++++++++++++++++ .../pom.xml | 23 +++++++++++++++++ .../azure-communication-phonenumbers/pom.xml | 23 +++++++++++++++++ .../azure-communication-rooms/pom.xml | 24 +++++++++++++++++- .../azure-communication-sms/pom.xml | 22 ++++++++++++++++ .../azure-digitaltwins-core/pom.xml | 23 +++++++++++++++++ .../azure-ai-documentintelligence/pom.xml | 23 +++++++++++++++++ .../azure-ai-formrecognizer/pom.xml | 23 +++++++++++++++++ .../pom.xml | 23 +++++++++++++++++ .../pom.xml | 23 +++++++++++++++++ .../azure-security-keyvault-keys/pom.xml | 23 +++++++++++++++++ .../azure-security-keyvault-secrets/pom.xml | 23 +++++++++++++++++ sdk/maps/azure-maps-elevation/pom.xml | 23 +++++++++++++++++ sdk/maps/azure-maps-geolocation/pom.xml | 23 +++++++++++++++++ sdk/maps/azure-maps-render/pom.xml | 23 +++++++++++++++++ sdk/maps/azure-maps-route/pom.xml | 23 +++++++++++++++++ sdk/maps/azure-maps-search/pom.xml | 23 +++++++++++++++++ sdk/maps/azure-maps-timezone/pom.xml | 23 +++++++++++++++++ sdk/maps/azure-maps-traffic/pom.xml | 23 +++++++++++++++++ sdk/maps/azure-maps-weather/pom.xml | 23 +++++++++++++++++ .../azure-ai-metricsadvisor/pom.xml | 23 +++++++++++++++++ .../azure-mixedreality-authentication/pom.xml | 23 +++++++++++++++++ .../azure-iot-modelsrepository/pom.xml | 23 +++++++++++++++++ sdk/openai/azure-ai-openai-assistants/pom.xml | 23 +++++++++++++++++ sdk/openai/azure-ai-openai/pom.xml | 25 +++++++++++++++++-- .../azure-ai-personalizer/pom.xml | 23 +++++++++++++++++ .../azure-resourcemanager/pom.xml | 20 +++++++++++++++ .../azure-resourcemanager/pom.xml | 21 ++++++++++++++++ .../azure-messaging-servicebus/pom.xml | 23 +++++++++++++++++ .../pom.xml | 22 ++++++++++++++++ .../azure-analytics-synapse-artifacts/pom.xml | 22 ++++++++++++++++ .../pom.xml | 22 ++++++++++++++++ .../pom.xml | 22 ++++++++++++++++ .../azure-analytics-synapse-spark/pom.xml | 22 ++++++++++++++++ 41 files changed, 913 insertions(+), 8 deletions(-) diff --git a/sdk/attestation/azure-security-attestation/pom.xml b/sdk/attestation/azure-security-attestation/pom.xml index 8b57ecce91ebc..6d876824d3292 100644 --- a/sdk/attestation/azure-security-attestation/pom.xml +++ b/sdk/attestation/azure-security-attestation/pom.xml @@ -116,6 +116,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -159,4 +165,21 @@ + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/communication/azure-communication-callautomation/pom.xml b/sdk/communication/azure-communication-callautomation/pom.xml index 83e5ffa4c8509..7aba66141fc62 100644 --- a/sdk/communication/azure-communication-callautomation/pom.xml +++ b/sdk/communication/azure-communication-callautomation/pom.xml @@ -122,6 +122,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -179,4 +185,21 @@ + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/communication/azure-communication-callingserver/pom.xml b/sdk/communication/azure-communication-callingserver/pom.xml index 2c25935c88baf..e774e7ddcbc1f 100644 --- a/sdk/communication/azure-communication-callingserver/pom.xml +++ b/sdk/communication/azure-communication-callingserver/pom.xml @@ -135,6 +135,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -186,4 +192,21 @@ + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/communication/azure-communication-chat/pom.xml b/sdk/communication/azure-communication-chat/pom.xml index ac30c723665d8..4f4fe4e369b3e 100644 --- a/sdk/communication/azure-communication-chat/pom.xml +++ b/sdk/communication/azure-communication-chat/pom.xml @@ -99,6 +99,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + @@ -138,4 +144,21 @@ + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/communication/azure-communication-email/pom.xml b/sdk/communication/azure-communication-email/pom.xml index 2ef1796d32882..ae1a1805e4143 100644 --- a/sdk/communication/azure-communication-email/pom.xml +++ b/sdk/communication/azure-communication-email/pom.xml @@ -99,6 +99,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + @@ -137,4 +143,21 @@ + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/communication/azure-communication-identity/pom.xml b/sdk/communication/azure-communication-identity/pom.xml index f2baed7668301..b70969eca2010 100644 --- a/sdk/communication/azure-communication-identity/pom.xml +++ b/sdk/communication/azure-communication-identity/pom.xml @@ -114,17 +114,16 @@ com.azure - azure-identity - 1.11.4 + azure-core-http-vertx + 1.0.0-beta.16 test com.azure - azure-core-http-vertx - 1.0.0-beta.16 + azure-identity + 1.11.4 test - diff --git a/sdk/communication/azure-communication-jobrouter/pom.xml b/sdk/communication/azure-communication-jobrouter/pom.xml index 7cb1654e6c257..5e11803fd9157 100644 --- a/sdk/communication/azure-communication-jobrouter/pom.xml +++ b/sdk/communication/azure-communication-jobrouter/pom.xml @@ -100,6 +100,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + org.slf4j slf4j-simple @@ -145,4 +151,21 @@ + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/communication/azure-communication-messages/pom.xml b/sdk/communication/azure-communication-messages/pom.xml index 9b4bfaaf56892..cc88fd7f9d4c6 100644 --- a/sdk/communication/azure-communication-messages/pom.xml +++ b/sdk/communication/azure-communication-messages/pom.xml @@ -111,6 +111,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + @@ -149,4 +155,21 @@ + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/communication/azure-communication-networktraversal/pom.xml b/sdk/communication/azure-communication-networktraversal/pom.xml index 5ab12c911f69e..c2f7d023b6d9b 100644 --- a/sdk/communication/azure-communication-networktraversal/pom.xml +++ b/sdk/communication/azure-communication-networktraversal/pom.xml @@ -104,6 +104,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -156,4 +162,21 @@ + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/communication/azure-communication-phonenumbers/pom.xml b/sdk/communication/azure-communication-phonenumbers/pom.xml index cbf7389c435ff..70e85bed5de3c 100644 --- a/sdk/communication/azure-communication-phonenumbers/pom.xml +++ b/sdk/communication/azure-communication-phonenumbers/pom.xml @@ -132,6 +132,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -186,4 +192,21 @@ + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/communication/azure-communication-rooms/pom.xml b/sdk/communication/azure-communication-rooms/pom.xml index b5aa9eb2594bf..cea39140f4176 100644 --- a/sdk/communication/azure-communication-rooms/pom.xml +++ b/sdk/communication/azure-communication-rooms/pom.xml @@ -107,7 +107,13 @@ azure-core-http-okhttp 1.11.19 test - + + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -115,4 +121,20 @@ test + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/communication/azure-communication-sms/pom.xml b/sdk/communication/azure-communication-sms/pom.xml index 8b40e8ec69513..c4682e935f98c 100644 --- a/sdk/communication/azure-communication-sms/pom.xml +++ b/sdk/communication/azure-communication-sms/pom.xml @@ -104,6 +104,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -143,4 +149,20 @@ + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/digitaltwins/azure-digitaltwins-core/pom.xml b/sdk/digitaltwins/azure-digitaltwins-core/pom.xml index 0c2c1d0f15909..4d62d0c0a6a4d 100644 --- a/sdk/digitaltwins/azure-digitaltwins-core/pom.xml +++ b/sdk/digitaltwins/azure-digitaltwins-core/pom.xml @@ -85,6 +85,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + org.junit.jupiter junit-jupiter-api @@ -143,4 +149,21 @@ + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/documentintelligence/azure-ai-documentintelligence/pom.xml b/sdk/documentintelligence/azure-ai-documentintelligence/pom.xml index 57ccc71e79458..4f2215414655a 100644 --- a/sdk/documentintelligence/azure-ai-documentintelligence/pom.xml +++ b/sdk/documentintelligence/azure-ai-documentintelligence/pom.xml @@ -74,6 +74,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + org.junit.jupiter junit-jupiter-api @@ -99,4 +105,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/formrecognizer/azure-ai-formrecognizer/pom.xml b/sdk/formrecognizer/azure-ai-formrecognizer/pom.xml index 6f2ed9a93c2e7..15deae3511dc9 100644 --- a/sdk/formrecognizer/azure-ai-formrecognizer/pom.xml +++ b/sdk/formrecognizer/azure-ai-formrecognizer/pom.xml @@ -73,6 +73,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + org.junit.jupiter junit-jupiter-api @@ -98,4 +104,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/keyvault/azure-security-keyvault-administration/pom.xml b/sdk/keyvault/azure-security-keyvault-administration/pom.xml index 7cc8340b504c8..4b9aec1e70dcf 100644 --- a/sdk/keyvault/azure-security-keyvault-administration/pom.xml +++ b/sdk/keyvault/azure-security-keyvault-administration/pom.xml @@ -103,6 +103,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-security-keyvault-keys @@ -122,4 +128,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/keyvault/azure-security-keyvault-certificates/pom.xml b/sdk/keyvault/azure-security-keyvault-certificates/pom.xml index c9a9907557599..62d134f066421 100644 --- a/sdk/keyvault/azure-security-keyvault-certificates/pom.xml +++ b/sdk/keyvault/azure-security-keyvault-certificates/pom.xml @@ -98,6 +98,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -138,4 +144,21 @@ + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/keyvault/azure-security-keyvault-keys/pom.xml b/sdk/keyvault/azure-security-keyvault-keys/pom.xml index 0c0458d0b0ecb..8bab779e35e93 100644 --- a/sdk/keyvault/azure-security-keyvault-keys/pom.xml +++ b/sdk/keyvault/azure-security-keyvault-keys/pom.xml @@ -102,6 +102,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -123,4 +129,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/keyvault/azure-security-keyvault-secrets/pom.xml b/sdk/keyvault/azure-security-keyvault-secrets/pom.xml index af2e1baee6438..72de3404b5599 100644 --- a/sdk/keyvault/azure-security-keyvault-secrets/pom.xml +++ b/sdk/keyvault/azure-security-keyvault-secrets/pom.xml @@ -68,6 +68,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + org.junit.jupiter junit-jupiter-api @@ -114,4 +120,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/maps/azure-maps-elevation/pom.xml b/sdk/maps/azure-maps-elevation/pom.xml index 9848b47c7e36d..12fec3ccdb963 100644 --- a/sdk/maps/azure-maps-elevation/pom.xml +++ b/sdk/maps/azure-maps-elevation/pom.xml @@ -64,6 +64,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -101,4 +107,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/maps/azure-maps-geolocation/pom.xml b/sdk/maps/azure-maps-geolocation/pom.xml index 23b09858ac127..d98ffa1b79812 100644 --- a/sdk/maps/azure-maps-geolocation/pom.xml +++ b/sdk/maps/azure-maps-geolocation/pom.xml @@ -68,6 +68,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -105,4 +111,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/maps/azure-maps-render/pom.xml b/sdk/maps/azure-maps-render/pom.xml index 3d4e7164a1bd7..8a9072d8c1713 100644 --- a/sdk/maps/azure-maps-render/pom.xml +++ b/sdk/maps/azure-maps-render/pom.xml @@ -77,6 +77,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -114,4 +120,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/maps/azure-maps-route/pom.xml b/sdk/maps/azure-maps-route/pom.xml index 219a1f1330409..d6686feee86f5 100644 --- a/sdk/maps/azure-maps-route/pom.xml +++ b/sdk/maps/azure-maps-route/pom.xml @@ -77,6 +77,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -120,4 +126,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/maps/azure-maps-search/pom.xml b/sdk/maps/azure-maps-search/pom.xml index 9bd1b2edd105d..5262610de9994 100644 --- a/sdk/maps/azure-maps-search/pom.xml +++ b/sdk/maps/azure-maps-search/pom.xml @@ -78,6 +78,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -115,4 +121,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/maps/azure-maps-timezone/pom.xml b/sdk/maps/azure-maps-timezone/pom.xml index 4c4b5e2eaaecf..15eed78a98d58 100644 --- a/sdk/maps/azure-maps-timezone/pom.xml +++ b/sdk/maps/azure-maps-timezone/pom.xml @@ -74,6 +74,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -111,4 +117,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/maps/azure-maps-traffic/pom.xml b/sdk/maps/azure-maps-traffic/pom.xml index 177c33248fd59..e4fb67655a947 100644 --- a/sdk/maps/azure-maps-traffic/pom.xml +++ b/sdk/maps/azure-maps-traffic/pom.xml @@ -65,6 +65,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -102,4 +108,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/maps/azure-maps-weather/pom.xml b/sdk/maps/azure-maps-weather/pom.xml index d46fec7ee3bcc..49a6e6a25008f 100644 --- a/sdk/maps/azure-maps-weather/pom.xml +++ b/sdk/maps/azure-maps-weather/pom.xml @@ -75,6 +75,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -112,4 +118,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/metricsadvisor/azure-ai-metricsadvisor/pom.xml b/sdk/metricsadvisor/azure-ai-metricsadvisor/pom.xml index a67f389a77c6e..bb33b112ea9ad 100644 --- a/sdk/metricsadvisor/azure-ai-metricsadvisor/pom.xml +++ b/sdk/metricsadvisor/azure-ai-metricsadvisor/pom.xml @@ -71,6 +71,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + org.junit.jupiter junit-jupiter-api @@ -96,4 +102,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/mixedreality/azure-mixedreality-authentication/pom.xml b/sdk/mixedreality/azure-mixedreality-authentication/pom.xml index 2f45b30461680..36748a677ab52 100644 --- a/sdk/mixedreality/azure-mixedreality-authentication/pom.xml +++ b/sdk/mixedreality/azure-mixedreality-authentication/pom.xml @@ -55,6 +55,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + org.junit.jupiter junit-jupiter-api @@ -102,4 +108,21 @@ + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/modelsrepository/azure-iot-modelsrepository/pom.xml b/sdk/modelsrepository/azure-iot-modelsrepository/pom.xml index 885eefb52fd97..24213dcc7c860 100644 --- a/sdk/modelsrepository/azure-iot-modelsrepository/pom.xml +++ b/sdk/modelsrepository/azure-iot-modelsrepository/pom.xml @@ -73,6 +73,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + org.junit.jupiter junit-jupiter-api @@ -131,4 +137,21 @@ + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/openai/azure-ai-openai-assistants/pom.xml b/sdk/openai/azure-ai-openai-assistants/pom.xml index 323f817c260f8..4153c4ef59974 100644 --- a/sdk/openai/azure-ai-openai-assistants/pom.xml +++ b/sdk/openai/azure-ai-openai-assistants/pom.xml @@ -92,6 +92,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + @@ -127,4 +133,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/openai/azure-ai-openai/pom.xml b/sdk/openai/azure-ai-openai/pom.xml index 64b678f710147..24e47a0eced92 100644 --- a/sdk/openai/azure-ai-openai/pom.xml +++ b/sdk/openai/azure-ai-openai/pom.xml @@ -95,14 +95,18 @@ 1.7.36 test - com.azure azure-core-http-okhttp 1.11.19 test - + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.knuddels jtokkit @@ -130,4 +134,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/personalizer/azure-ai-personalizer/pom.xml b/sdk/personalizer/azure-ai-personalizer/pom.xml index 3c85f55a30986..5b2b0aec0c453 100644 --- a/sdk/personalizer/azure-ai-personalizer/pom.xml +++ b/sdk/personalizer/azure-ai-personalizer/pom.xml @@ -70,6 +70,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + org.junit.jupiter junit-jupiter-api @@ -95,4 +101,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/resourcemanager/azure-resourcemanager/pom.xml b/sdk/resourcemanager/azure-resourcemanager/pom.xml index 6d6a1824231f3..8d8151f3dc7b0 100644 --- a/sdk/resourcemanager/azure-resourcemanager/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager/pom.xml @@ -223,6 +223,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + org.mockito mockito-core @@ -267,6 +273,20 @@ + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + diff --git a/sdk/resourcemanagerhybrid/azure-resourcemanager/pom.xml b/sdk/resourcemanagerhybrid/azure-resourcemanager/pom.xml index a93804c9dfa55..5fb5642b2a6e3 100644 --- a/sdk/resourcemanagerhybrid/azure-resourcemanager/pom.xml +++ b/sdk/resourcemanagerhybrid/azure-resourcemanager/pom.xml @@ -156,6 +156,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.jcraft jsch @@ -180,6 +186,21 @@ + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + diff --git a/sdk/servicebus/azure-messaging-servicebus/pom.xml b/sdk/servicebus/azure-messaging-servicebus/pom.xml index de869f7c2554f..e794114c5a974 100644 --- a/sdk/servicebus/azure-messaging-servicebus/pom.xml +++ b/sdk/servicebus/azure-messaging-servicebus/pom.xml @@ -85,6 +85,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + com.azure azure-identity @@ -164,4 +170,21 @@ test + + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/synapse/azure-analytics-synapse-accesscontrol/pom.xml b/sdk/synapse/azure-analytics-synapse-accesscontrol/pom.xml index 66715517c8554..f4d8a384d4186 100644 --- a/sdk/synapse/azure-analytics-synapse-accesscontrol/pom.xml +++ b/sdk/synapse/azure-analytics-synapse-accesscontrol/pom.xml @@ -62,6 +62,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + org.junit.jupiter junit-jupiter-api @@ -87,4 +93,20 @@ test + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/synapse/azure-analytics-synapse-artifacts/pom.xml b/sdk/synapse/azure-analytics-synapse-artifacts/pom.xml index f23d7978fbfbd..f8196a4b3de6b 100644 --- a/sdk/synapse/azure-analytics-synapse-artifacts/pom.xml +++ b/sdk/synapse/azure-analytics-synapse-artifacts/pom.xml @@ -62,6 +62,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + org.junit.jupiter junit-jupiter-api @@ -87,4 +93,20 @@ test + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/synapse/azure-analytics-synapse-managedprivateendpoints/pom.xml b/sdk/synapse/azure-analytics-synapse-managedprivateendpoints/pom.xml index 3f8acf37e0c2f..d3b534d9f351b 100644 --- a/sdk/synapse/azure-analytics-synapse-managedprivateendpoints/pom.xml +++ b/sdk/synapse/azure-analytics-synapse-managedprivateendpoints/pom.xml @@ -62,6 +62,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + org.junit.jupiter junit-jupiter-api @@ -87,4 +93,20 @@ test + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/synapse/azure-analytics-synapse-monitoring/pom.xml b/sdk/synapse/azure-analytics-synapse-monitoring/pom.xml index b75484d9d3df0..74a1985fc4fc1 100644 --- a/sdk/synapse/azure-analytics-synapse-monitoring/pom.xml +++ b/sdk/synapse/azure-analytics-synapse-monitoring/pom.xml @@ -62,6 +62,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + org.junit.jupiter junit-jupiter-api @@ -87,4 +93,20 @@ test + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + + diff --git a/sdk/synapse/azure-analytics-synapse-spark/pom.xml b/sdk/synapse/azure-analytics-synapse-spark/pom.xml index e2d982bfcadc7..a3513bcc4f941 100644 --- a/sdk/synapse/azure-analytics-synapse-spark/pom.xml +++ b/sdk/synapse/azure-analytics-synapse-spark/pom.xml @@ -68,6 +68,12 @@ 1.11.19 test + + com.azure + azure-core-http-vertx + 1.0.0-beta.16 + test + org.junit.jupiter junit-jupiter-api @@ -93,4 +99,20 @@ test + + + java12plus + + [12,) + + + + com.azure + azure-core-http-jdk-httpclient + 1.0.0-beta.11 + test + + + +