Skip to content

Commit 70907ac

Browse files
committed
Release azure-resourcemanager 2.1.0
1 parent 5ad120f commit 70907ac

File tree

4 files changed

+1062
-777
lines changed

4 files changed

+1062
-777
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ extensions:
2828

2929
To run this sample:
3030

31-
Set the environment variable `AZURE_AUTH_LOCATION` with the full path for an auth file. See [how to create an auth file](https://github.com/Azure/azure-libraries-for-java/blob/master/AUTH.md).
31+
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).
3232

3333
git clone https://github.com/Azure-Samples/service-bus-java-manage-publish-subscribe-with-advanced-features.git
3434

@@ -38,9 +38,11 @@ Set the environment variable `AZURE_AUTH_LOCATION` with the full path for an aut
3838

3939
## More information ##
4040

41-
[http://azure.com/java](http://azure.com/java)
41+
For general documentation as well as quickstarts on how to use Azure Management Libraries for Java, please see [here](https://aka.ms/azsdk/java/mgmt).
4242

43-
If you don't have a Microsoft Azure subscription you can get a FREE trial account [here](http://go.microsoft.com/fwlink/?LinkId=330212)
43+
Start to develop applications with Java on Azure [here](http://azure.com/java).
44+
45+
If you don't have a Microsoft Azure subscription you can get a FREE trial account [here](http://go.microsoft.com/fwlink/?LinkId=330212).
4446

4547
---
4648

pom.xml

Lines changed: 16 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@
1515
<artifactId>exec-maven-plugin</artifactId>
1616
<version>1.4.0</version>
1717
<configuration>
18-
<mainClass>com.microsoft.azure.management.servicebus.samples.ServiceBusPublishSubscribeAdvanceFeatures</mainClass>
18+
<mainClass>com.azure.resourcemanager.servicebus.samples.ServiceBusPublishSubscribeAdvanceFeatures</mainClass>
19+
<cleanupDaemonThreads>false</cleanupDaemonThreads>
1920
</configuration>
2021
</plugin>
2122
<plugin>
2223
<artifactId>maven-compiler-plugin</artifactId>
23-
<version>3.0</version>
24+
<version>3.8.1</version>
2425
<configuration>
25-
<source>1.7</source>
26-
<target>1.7</target>
26+
<source>1.8</source>
27+
<target>1.8</target>
2728
</configuration>
2829
</plugin>
2930
<plugin>
@@ -40,7 +41,7 @@
4041
</descriptorRefs>
4142
<archive>
4243
<manifest>
43-
<mainClass>com.microsoft.azure.management.servicebus.samples.ServiceBusPublishSubscribeAdvanceFeatures.java</mainClass>
44+
<mainClass>com.azure.resourcemanager.servicebus.samples.ServiceBusPublishSubscribeAdvanceFeatures.java</mainClass>
4445
</manifest>
4546
</archive>
4647
</configuration>
@@ -51,39 +52,24 @@
5152
</build>
5253
<dependencies>
5354
<dependency>
54-
<groupId>com.microsoft.azure</groupId>
55-
<artifactId>azure-servicebus</artifactId>
56-
<version>0.9.7</version>
57-
<exclusions>
58-
<exclusion>
59-
<artifactId>jsr311-api</artifactId>
60-
<groupId>javax.ws.rs</groupId>
61-
</exclusion>
62-
<exclusion>
63-
<artifactId>httpclient</artifactId>
64-
<groupId>org.apache.httpcomponents</groupId>
65-
</exclusion>
66-
</exclusions>
55+
<groupId>com.azure.resourcemanager</groupId>
56+
<artifactId>azure-resourcemanager</artifactId>
57+
<version>2.1.0</version>
6758
</dependency>
6859
<dependency>
69-
<groupId>com.microsoft.azure</groupId>
70-
<artifactId>azure</artifactId>
71-
<version>1.36.3</version>
60+
<groupId>com.azure</groupId>
61+
<artifactId>azure-identity</artifactId>
62+
<version>1.2.0</version>
7263
</dependency>
7364
<dependency>
7465
<groupId>commons-net</groupId>
7566
<artifactId>commons-net</artifactId>
76-
<version>3.3</version>
67+
<version>3.6</version>
7768
</dependency>
7869
<dependency>
79-
<groupId>commons-lang</groupId>
80-
<artifactId>commons-lang</artifactId>
81-
<version>2.6</version>
82-
</dependency>
83-
<dependency>
84-
<groupId>org.apache.commons</groupId>
85-
<artifactId>commons-lang3</artifactId>
86-
<version>3.7</version>
70+
<groupId>com.azure</groupId>
71+
<artifactId>azure-messaging-servicebus</artifactId>
72+
<version>7.0.0-beta.7</version>
8773
</dependency>
8874
</dependencies>
8975
</project>

0 commit comments

Comments
 (0)