Skip to content

Commit eca5c4d

Browse files
eng, sync dependency versions (#2707)
1 parent 93108c9 commit eca5c4d

File tree

15 files changed

+150
-150
lines changed

15 files changed

+150
-150
lines changed

azure-dataplane-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>com.azure</groupId>
5151
<artifactId>azure-core-http-netty</artifactId>
52-
<version>1.14.1</version>
52+
<version>1.14.2</version>
5353
<scope>test</scope>
5454
</dependency>
5555
<dependency>

azure-tests/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626
<dependency>
2727
<groupId>com.azure</groupId>
2828
<artifactId>azure-core-management</artifactId>
29-
<version>1.12.0</version>
29+
<version>1.13.0</version>
3030
</dependency>
3131

3232
<dependency>
3333
<groupId>com.azure</groupId>
3434
<artifactId>azure-core-http-netty</artifactId>
35-
<version>1.14.1</version>
35+
<version>1.14.2</version>
3636
<scope>test</scope>
3737
</dependency>
3838

customization-base/src/main/resources/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,19 @@
4040
<dependency>
4141
<groupId>com.azure</groupId>
4242
<artifactId>azure-core</artifactId>
43-
<version>1.47.0</version>
43+
<version>1.48.0</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>com.azure</groupId>
4747
<artifactId>azure-core-http-netty</artifactId>
48-
<version>1.14.1</version>
48+
<version>1.14.2</version>
4949
</dependency>
5050

5151
<!-- Test Dependencies -->
5252
<dependency>
5353
<groupId>com.azure</groupId>
5454
<artifactId>azure-core-test</artifactId>
55-
<version>1.24.0</version>
55+
<version>1.24.1</version>
5656
<scope>test</scope>
5757
</dependency>
5858
</dependencies>
@@ -63,12 +63,12 @@
6363
<plugin>
6464
<groupId>org.apache.maven.plugins</groupId>
6565
<artifactId>maven-assembly-plugin</artifactId>
66-
<version>3.3.0</version>
66+
<version>3.7.1</version>
6767
</plugin>
6868
<plugin>
6969
<groupId>org.apache.maven.plugins</groupId>
7070
<artifactId>maven-compiler-plugin</artifactId>
71-
<version>3.12.1</version>
71+
<version>3.13.0</version>
7272
<configuration>
7373
<source>11</source>
7474
<target>11</target>

customization-tests/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@
3838
<dependency>
3939
<groupId>com.azure</groupId>
4040
<artifactId>azure-core-http-netty</artifactId>
41-
<version>1.14.1</version>
41+
<version>1.14.2</version>
4242
</dependency>
4343

4444
<!-- Test Dependencies -->
4545
<dependency>
4646
<groupId>com.azure</groupId>
4747
<artifactId>azure-core-test</artifactId>
48-
<version>1.24.0</version>
48+
<version>1.24.1</version>
4949
<scope>test</scope>
5050
</dependency>
5151
</dependencies>

fluent-tests/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,25 +91,25 @@
9191
<dependency>
9292
<groupId>com.azure</groupId>
9393
<artifactId>azure-core-management</artifactId>
94-
<version>1.12.0</version>
94+
<version>1.13.0</version>
9595
</dependency>
9696

9797
<dependency>
9898
<groupId>com.azure</groupId>
9999
<artifactId>azure-core-test</artifactId>
100-
<version>1.24.0</version>
100+
<version>1.24.1</version>
101101
<scope>test</scope>
102102
</dependency>
103103
<dependency>
104104
<groupId>com.azure</groupId>
105105
<artifactId>azure-core-http-netty</artifactId>
106-
<version>1.14.1</version>
106+
<version>1.14.2</version>
107107
<scope>test</scope>
108108
</dependency>
109109
<dependency>
110110
<groupId>com.azure</groupId>
111111
<artifactId>azure-identity</artifactId>
112-
<version>1.11.4</version>
112+
<version>1.12.0</version>
113113
<scope>test</scope>
114114
</dependency>
115115
<dependency>

fluentnamer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>com.azure</groupId>
4040
<artifactId>azure-core-management</artifactId>
41-
<version>1.12.0</version>
41+
<version>1.13.0</version>
4242
</dependency>
4343
</dependencies>
4444
</project>

javagen/src/main/java/com/azure/autorest/model/projectmodel/Project.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ public enum Dependency {
5959
AZURE_CLIENT_SDK_PARENT("com.azure", "azure-client-sdk-parent", "1.7.0"),
6060
AZURE_JSON("com.azure", "azure-json", "1.1.0"),
6161
AZURE_XML("com.azure", "azure-xml", "1.0.0-beta.2"),
62-
AZURE_CORE("com.azure", "azure-core", "1.47.0"),
63-
AZURE_CORE_MANAGEMENT("com.azure", "azure-core-management", "1.12.0"),
64-
AZURE_CORE_HTTP_NETTY("com.azure", "azure-core-http-netty", "1.14.1"),
65-
AZURE_CORE_TEST("com.azure", "azure-core-test", "1.24.0"),
66-
AZURE_IDENTITY("com.azure", "azure-identity", "1.11.4"),
67-
AZURE_CORE_EXPERIMENTAL("com.azure", "azure-core-experimental", "1.0.0-beta.48"),
62+
AZURE_CORE("com.azure", "azure-core", "1.48.0"),
63+
AZURE_CORE_MANAGEMENT("com.azure", "azure-core-management", "1.13.0"),
64+
AZURE_CORE_HTTP_NETTY("com.azure", "azure-core-http-netty", "1.14.2"),
65+
AZURE_CORE_TEST("com.azure", "azure-core-test", "1.24.1"),
66+
AZURE_IDENTITY("com.azure", "azure-identity", "1.12.0"),
67+
AZURE_CORE_EXPERIMENTAL("com.azure", "azure-core-experimental", "1.0.0-beta.49"),
6868

6969
GENERIC_CORE("io.clientcore", "core", "1.0.0-beta.1"),
7070
GENERIC_JSON("io.clientcore", "core-json", "1.0.0-beta.1"),

pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>com.azure</groupId>
5959
<artifactId>azure-core</artifactId>
60-
<version>1.47.0</version>
60+
<version>1.48.0</version>
6161
</dependency>
6262
</dependencies>
6363
</dependencyManagement>
@@ -68,31 +68,31 @@
6868
<plugin>
6969
<groupId>org.apache.maven.plugins</groupId>
7070
<artifactId>maven-clean-plugin</artifactId>
71-
<version>3.2.0</version>
71+
<version>3.3.2</version>
7272
</plugin>
7373

7474
<plugin>
7575
<groupId>org.apache.maven.plugins</groupId>
7676
<artifactId>maven-jar-plugin</artifactId>
77-
<version>3.2.2</version>
77+
<version>3.3.0</version>
7878
</plugin>
7979

8080
<plugin>
8181
<groupId>org.apache.maven.plugins</groupId>
8282
<artifactId>maven-resources-plugin</artifactId>
83-
<version>3.3.0</version>
83+
<version>3.3.1</version>
8484
</plugin>
8585

8686
<plugin>
8787
<groupId>org.apache.maven.plugins</groupId>
8888
<artifactId>maven-install-plugin</artifactId>
89-
<version>3.0.0-M1</version>
89+
<version>3.1.1</version>
9090
</plugin>
9191

9292
<plugin>
9393
<groupId>org.apache.maven.plugins</groupId>
9494
<artifactId>maven-assembly-plugin</artifactId>
95-
<version>3.3.0</version>
95+
<version>3.7.1</version>
9696
</plugin>
9797

9898
<!-- This plugin runs tests -->
@@ -129,7 +129,7 @@
129129
<plugin>
130130
<groupId>org.apache.maven.plugins</groupId>
131131
<artifactId>maven-compiler-plugin</artifactId>
132-
<version>3.12.1</version>
132+
<version>3.13.0</version>
133133
<configuration>
134134
<source>11</source>
135135
<target>11</target>
@@ -139,7 +139,7 @@
139139
<plugin>
140140
<groupId>com.azure.tools</groupId>
141141
<artifactId>codesnippet-maven-plugin</artifactId>
142-
<version>1.0.0-beta.8</version>
142+
<version>1.0.0-beta.10</version>
143143
<configuration>
144144
<skip>${codesnippet.skip}</skip>
145145
</configuration>
@@ -148,7 +148,7 @@
148148
<plugin>
149149
<groupId>org.apache.maven.plugins</groupId>
150150
<artifactId>maven-javadoc-plugin</artifactId>
151-
<version>3.6.0</version>
151+
<version>3.6.3</version>
152152
<configuration>
153153
<source>1.8</source>
154154
<detectJavaApiLink>false</detectJavaApiLink>
@@ -237,7 +237,7 @@
237237
<plugin>
238238
<groupId>org.apache.maven.plugins</groupId>
239239
<artifactId>maven-source-plugin</artifactId>
240-
<version>3.2.1</version>
240+
<version>3.3.1</version>
241241
<configuration>
242242
<outputDirectory>${packageOutputDirectory}</outputDirectory>
243243
</configuration>
@@ -256,7 +256,7 @@
256256
<plugin>
257257
<groupId>org.apache.maven.plugins</groupId>
258258
<artifactId>maven-antrun-plugin</artifactId>
259-
<version>3.0.0</version>
259+
<version>3.1.0</version>
260260
<executions>
261261
<execution>
262262
<id>copy</id>
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
com.azure:azure-core;1.47.0;1.47.0
2-
com.azure:azure-core-experimental;1.0.0-beta.48;1.0.0-beta.48
3-
com.azure:azure-core-http-netty;1.14.1;1.14.1
4-
com.azure:azure-core-management;1.12.0;1.12.0
5-
com.azure:azure-core-test;1.24.0;1.24.0
1+
com.azure:azure-core;1.48.0;1.48.0
2+
com.azure:azure-core-experimental;1.0.0-beta.49;1.0.0-beta.49
3+
com.azure:azure-core-http-netty;1.14.2;1.14.2
4+
com.azure:azure-core-management;1.13.0;1.13.0
5+
com.azure:azure-core-test;1.24.1;1.24.1
66

7-
com.azure:azure-identity;1.11.4;1.11.4
7+
com.azure:azure-identity;1.12.0;1.12.0
88
com.azure:azure-json;1.1.0;1.1.0

protocol-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>com.azure</groupId>
2828
<artifactId>azure-core-http-netty</artifactId>
29-
<version>1.14.1</version>
29+
<version>1.14.2</version>
3030
<scope>test</scope>
3131
</dependency>
3232
<dependency>

0 commit comments

Comments
 (0)