Skip to content

Commit e0186a3

Browse files
Release 2.10.0
1 parent ce262e6 commit e0186a3

File tree

4 files changed

+212
-133
lines changed

4 files changed

+212
-133
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ extensions:
2424

2525
To run this sample:
2626

27-
See [DefaultAzureCredential](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/identity/azure-identity#defaultazurecredential) and prepare the authentication works best for you. For more details on authentication, please refer to [AUTH.md](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/resourcemanager/docs/AUTH.md).
27+
See [DefaultAzureCredential](https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/identity/azure-identity#defaultazurecredential) and prepare the authentication works best for you. For more details on authentication, please refer to [AUTH.md](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/resourcemanager/docs/AUTH.md).
2828

2929
git clone https://github.com/Azure-Samples/aci-java-create-container-groups.git
3030

pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,17 @@
5454
<dependency>
5555
<groupId>com.azure.resourcemanager</groupId>
5656
<artifactId>azure-resourcemanager</artifactId>
57-
<version>2.1.0</version>
57+
<version>2.10.0</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>com.azure</groupId>
6161
<artifactId>azure-identity</artifactId>
62-
<version>1.2.0</version>
62+
<version>1.4.1</version>
63+
</dependency>
64+
<dependency>
65+
<groupId>com.jcraft</groupId>
66+
<artifactId>jsch</artifactId>
67+
<version>0.1.55</version>
6368
</dependency>
6469
<dependency>
6570
<groupId>commons-net</groupId>

src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceWithMultipleContainerImages.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ public class ManageContainerInstanceWithMultipleContainerImages {
3535
public static boolean runSample(AzureResourceManager azureResourceManager) {
3636
final String rgName = Utils.randomResourceName(azureResourceManager, "rgACI", 15);
3737
final String aciName = Utils.randomResourceName(azureResourceManager, "acisample", 20);
38-
final String containerImageName1 = "microsoft/aci-helloworld";
39-
final String containerImageName2 = "microsoft/aci-tutorial-sidecar";
38+
final String containerImageName1 = "mcr.microsoft.com/azuredocs/aci-helloworld";
39+
final String containerImageName2 = "mcr.microsoft.com/azuredocs/aci-tutorial-sidecar";
4040

4141
try {
4242
//=============================================================

0 commit comments

Comments
 (0)