Skip to content

Commit ef14c5b

Browse files
committed
update dependencies versions
1 parent 7c61330 commit ef14c5b

1 file changed

Lines changed: 34 additions & 26 deletions

File tree

pom.xml

Lines changed: 34 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,17 @@
4343
<!-- Allowed values for excluded Groups here - - - - - - - - - - - - -
4444
xJDBC42 - - - - - - For tests not compatible with JDBC 42 Specifications
4545
xGradle - - - - - - For tests not compatible with Gradle Script - - - - -
46-
xSQLv11 - - - - - - For tests not compatible with SQL Server 2012
46+
xSQLv11 - - - - - - For tests not compatible with SQL Server 2012 - - - -
4747
xSQLv12 - - - - - - For tests not compatible with SQL Server 2008 R2 - 2014
4848
xSQLv14 - - - - - - For tests not compatible with SQL Server 2016 - 2017
4949
xSQLv15 - - - - - - For tests not compatible with SQL Server 2019 - - - -
5050
xAzureSQLDB - - - - For tests not compatible with Azure SQL Database - -
5151
xAzureSQLDW - - - - For tests not compatible with Azure Data Warehouse -
5252
xAzureSQLMI - - - - For tests not compatible with Azure SQL Managed Instance
53-
NTLM - - - - - - - For tests using NTLM Authentication mode (excluded by default)
54-
reqExternalSetup - For tests requiring external setup (excluded by default)
55-
clientCertAuth - - For tests requiring client certificate authentication setup (excluded by default)
53+
NTLM - - - - - - For tests using NTLM Authentication mode (excluded by default)
54+
reqExternalSetup - For tests requiring external setup (excluded by default)
55+
clientCertAuth - - For tests requiring client certificate authentication
56+
setup (excluded by default) - - - - - - - - - - - - - - - - - - - - - - -
5657
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
5758
Default testing enabled with SQL Server 2019 (SQLv15) -->
5859
<excludedGroups>xSQLv12,xSQLv15,NTLM,MSI,reqExternalSetup,clientCertAuth,fedAuth</excludedGroups>
@@ -61,14 +62,15 @@
6162
<releaseExt>-preview</releaseExt>
6263

6364
<!-- Driver Dependencies -->
64-
<osgi.core.version>6.0.0</osgi.core.version>
65-
<azure.keyvault.version>4.4.1</azure.keyvault.version>
66-
<azure.identity.version>1.5.0</azure.identity.version>
67-
<osgi.comp.version>5.0.0</osgi.comp.version>
68-
<antlr.runtime.version>4.9.3</antlr.runtime.version>
69-
<google.gson.version>2.8.9</google.gson.version>
70-
<bouncycastle.bcprov.version>1.70</bouncycastle.bcprov.version>
71-
<bouncycastle.bcpkix.version>1.70</bouncycastle.bcpkix.version>
65+
<org.osgi.core.version>6.0.0</org.osgi.core.version>
66+
<azure-security-keyvault-keys.version>4.4.4</azure-security-keyvault-keys.version>
67+
<azure-identity.version>1.5.3</azure-identity.version>
68+
<msal.version>1.13.0</msal.version>
69+
<org.osgi.compendium.version>5.0.0</org.osgi.compendium.version>
70+
<antlr-runtime.version>4.9.3</antlr-runtime.version>
71+
<com.google.code.gson.version>2.9.0</com.google.code.gson.version>
72+
<bcprov-jdk15on.version>1.70</bcprov-jdk15on.version>
73+
<bcpkix-jdk15on.version>1.70</bcpkix-jdk15on.version>
7274

7375
<!-- JUnit Test Dependencies -->
7476
<junit.platform.version>[1.3.2, 1.5.2]</junit.platform.version>
@@ -88,13 +90,13 @@
8890
<dependency>
8991
<groupId>com.azure</groupId>
9092
<artifactId>azure-security-keyvault-keys</artifactId>
91-
<version>${azure.keyvault.version}</version>
93+
<version>${azure-security-keyvault-keys.version}</version>
9294
<optional>true</optional>
9395
</dependency>
9496
<dependency>
9597
<groupId>com.azure</groupId>
9698
<artifactId>azure-identity</artifactId>
97-
<version>${azure.identity.version}</version>
99+
<version>${azure-identity.version}</version>
98100
<optional>true</optional>
99101
<exclusions>
100102
<exclusion>
@@ -104,45 +106,51 @@
104106
</exclusions>
105107
</dependency>
106108

109+
<dependency>
110+
<groupId>com.microsoft.azure</groupId>
111+
<artifactId>msal4j</artifactId>
112+
<version>1.13.0</version>
113+
</dependency>
114+
107115
<!-- dependencies for ANTLR -->
108116
<dependency>
109117
<groupId>org.antlr</groupId>
110118
<artifactId>antlr4-runtime</artifactId>
111-
<version>${antlr.runtime.version}</version>
119+
<version>${antlr-runtime.version}</version>
112120
<optional>true</optional>
113121
</dependency>
114122

115123
<!-- dependencies for AAS Enclave Provider -->
116124
<dependency>
117125
<groupId>com.google.code.gson</groupId>
118126
<artifactId>gson</artifactId>
119-
<version>${google.gson.version}</version>
127+
<version>${com.google.code.gson.version}</version>
120128
<optional>true</optional>
121129
</dependency>
122130
<dependency>
123131
<groupId>org.bouncycastle</groupId>
124132
<artifactId>bcprov-jdk15on</artifactId>
125-
<version>${bouncycastle.bcprov.version}</version>
133+
<version>${bcprov-jdk15on.version}</version>
126134
<optional>true</optional>
127135
</dependency>
128136
<!-- dependencies for Client Certificate Authentication -->
129137
<dependency>
130138
<groupId>org.bouncycastle</groupId>
131139
<artifactId>bcpkix-jdk15on</artifactId>
132-
<version>${bouncycastle.bcpkix.version}</version>
140+
<version>${bcpkix-jdk15on.version}</version>
133141
<optional>true</optional>
134142
</dependency>
135143
<!-- dependencies provided by an OSGi-Framework -->
136144
<dependency>
137145
<groupId>org.osgi</groupId>
138146
<artifactId>org.osgi.core</artifactId>
139-
<version>${osgi.core.version}</version>
147+
<version>${org.osgi.core.version}</version>
140148
<scope>provided</scope>
141149
</dependency>
142150
<dependency>
143151
<groupId>org.osgi</groupId>
144152
<artifactId>org.osgi.compendium</artifactId>
145-
<version>${osgi.comp.version}</version>
153+
<version>${org.osgi.compendium.version}</version>
146154
<scope>provided</scope>
147155
</dependency>
148156

@@ -539,12 +547,12 @@
539547
</goals>
540548
</execution>
541549
<execution>
542-
<id>default-report</id>
543-
<phase>prepare-package</phase>
544-
<goals>
545-
<goal>report</goal>
546-
</goals>
547-
</execution>
550+
<id>default-report</id>
551+
<phase>prepare-package</phase>
552+
<goals>
553+
<goal>report</goal>
554+
</goals>
555+
</execution>
548556
</executions>
549557
<configuration>
550558
<excludes>

0 commit comments

Comments
 (0)