Skip to content

Commit

Permalink
update msal4j version (#2102)
Browse files Browse the repository at this point in the history
  • Loading branch information
lilgreenbird committed Mar 30, 2023
1 parent c3538fd commit 17625f2
Showing 1 changed file with 2 additions and 21 deletions.
23 changes: 2 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,42 +3,33 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>12.3.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Microsoft JDBC Driver for SQL Server</name>

<description>
Microsoft JDBC Driver for SQL Server.
</description>

<url>https://github.com/Microsoft/mssql-jdbc</url>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>

<organization>
<name>Microsoft Corporation</name>
</organization>

<developers>
<developer>
<organization>Microsoft</organization>
<organizationUrl>http://www.microsoft.com</organizationUrl>
</developer>
</developers>

<scm>
<url>https://github.com/Microsoft/mssql-jdbc</url>
</scm>

<properties>
<!-- Allowed values for excluded Groups here - - - - - - - - - - - - -
xJDBC42 - - - - - - For tests not compatible with JDBC 42 Specifications
Expand All @@ -57,21 +48,18 @@
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Default testing enabled with SQL Server 2019 (SQLv15) -->
<excludedGroups>xSQLv12,xSQLv15,NTLM,MSI,reqExternalSetup,clientCertAuth,fedAuth</excludedGroups>

<!-- Use -preview for preview release, leave empty for official release. -->
<releaseExt>-preview</releaseExt>

<!-- Driver Dependencies -->
<org.osgi.core.version>6.0.0</org.osgi.core.version>
<azure-security-keyvault-keys.version>4.5.3</azure-security-keyvault-keys.version>
<azure-identity.version>1.7.0</azure-identity.version>
<msal.version>1.13.3</msal.version>
<msal.version>1.13.7</msal.version>
<osgi.jdbc.version>1.1.0</osgi.jdbc.version>
<antlr-runtime.version>4.9.3</antlr-runtime.version>
<com.google.code.gson.version>2.9.0</com.google.code.gson.version>
<bcprov-jdk15on.version>1.70</bcprov-jdk15on.version>
<bcpkix-jdk15on.version>1.70</bcpkix-jdk15on.version>

<!-- JUnit Test Dependencies -->
<junit.platform.version>[1.3.2, 1.9.0]</junit.platform.version>
<junit.jupiter.version>5.8.2</junit.jupiter.version>
Expand All @@ -80,12 +68,10 @@
<slf4j.nop.version>1.7.30</slf4j.nop.version>
<gemini.mock.version>2.1.0.RELEASE</gemini.mock.version>
<h2.version>2.1.210</h2.version>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>
<enforcer.skip>false</enforcer.skip>
</properties>

<dependencies>
<dependency>
<groupId>com.azure</groupId>
Expand All @@ -105,22 +91,19 @@
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>msal4j</artifactId>
<version>1.13.3</version>
<version>1.13.7</version>
<optional>true</optional>
</dependency>

<!-- dependencies for ANTLR -->
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>${antlr-runtime.version}</version>
<optional>true</optional>
</dependency>

<!-- dependencies for AAS Enclave Provider -->
<dependency>
<groupId>com.google.code.gson</groupId>
Expand Down Expand Up @@ -154,7 +137,6 @@
<version>${osgi.jdbc.version}</version>
<scope>provided</scope>
</dependency>

<!-- dependencies for running tests -->
<dependency>
<groupId>org.junit.platform</groupId>
Expand Down Expand Up @@ -241,7 +223,6 @@
<scope>test</scope>
</dependency>
</dependencies>

<profiles>
<profile>
<id>jre8</id>
Expand Down

0 comments on commit 17625f2

Please sign in to comment.