|
43 | 43 | <!-- Allowed values for excluded Groups here - - - - - - - - - - - - - |
44 | 44 | xJDBC42 - - - - - - For tests not compatible with JDBC 42 Specifications |
45 | 45 | 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 - - - - |
47 | 47 | xSQLv12 - - - - - - For tests not compatible with SQL Server 2008 R2 - 2014 |
48 | 48 | xSQLv14 - - - - - - For tests not compatible with SQL Server 2016 - 2017 |
49 | 49 | xSQLv15 - - - - - - For tests not compatible with SQL Server 2019 - - - - |
50 | 50 | xAzureSQLDB - - - - For tests not compatible with Azure SQL Database - - |
51 | 51 | xAzureSQLDW - - - - For tests not compatible with Azure Data Warehouse - |
52 | 52 | 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) - - - - - - - - - - - - - - - - - - - - - - - |
56 | 57 | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
57 | 58 | Default testing enabled with SQL Server 2019 (SQLv15) --> |
58 | 59 | <excludedGroups>xSQLv12,xSQLv15,NTLM,MSI,reqExternalSetup,clientCertAuth,fedAuth</excludedGroups> |
|
61 | 62 | <releaseExt>-preview</releaseExt> |
62 | 63 |
|
63 | 64 | <!-- 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> |
72 | 74 |
|
73 | 75 | <!-- JUnit Test Dependencies --> |
74 | 76 | <junit.platform.version>[1.3.2, 1.5.2]</junit.platform.version> |
|
88 | 90 | <dependency> |
89 | 91 | <groupId>com.azure</groupId> |
90 | 92 | <artifactId>azure-security-keyvault-keys</artifactId> |
91 | | - <version>${azure.keyvault.version}</version> |
| 93 | + <version>${azure-security-keyvault-keys.version}</version> |
92 | 94 | <optional>true</optional> |
93 | 95 | </dependency> |
94 | 96 | <dependency> |
95 | 97 | <groupId>com.azure</groupId> |
96 | 98 | <artifactId>azure-identity</artifactId> |
97 | | - <version>${azure.identity.version}</version> |
| 99 | + <version>${azure-identity.version}</version> |
98 | 100 | <optional>true</optional> |
99 | 101 | <exclusions> |
100 | 102 | <exclusion> |
|
104 | 106 | </exclusions> |
105 | 107 | </dependency> |
106 | 108 |
|
| 109 | + <dependency> |
| 110 | + <groupId>com.microsoft.azure</groupId> |
| 111 | + <artifactId>msal4j</artifactId> |
| 112 | + <version>1.13.0</version> |
| 113 | + </dependency> |
| 114 | + |
107 | 115 | <!-- dependencies for ANTLR --> |
108 | 116 | <dependency> |
109 | 117 | <groupId>org.antlr</groupId> |
110 | 118 | <artifactId>antlr4-runtime</artifactId> |
111 | | - <version>${antlr.runtime.version}</version> |
| 119 | + <version>${antlr-runtime.version}</version> |
112 | 120 | <optional>true</optional> |
113 | 121 | </dependency> |
114 | 122 |
|
115 | 123 | <!-- dependencies for AAS Enclave Provider --> |
116 | 124 | <dependency> |
117 | 125 | <groupId>com.google.code.gson</groupId> |
118 | 126 | <artifactId>gson</artifactId> |
119 | | - <version>${google.gson.version}</version> |
| 127 | + <version>${com.google.code.gson.version}</version> |
120 | 128 | <optional>true</optional> |
121 | 129 | </dependency> |
122 | 130 | <dependency> |
123 | 131 | <groupId>org.bouncycastle</groupId> |
124 | 132 | <artifactId>bcprov-jdk15on</artifactId> |
125 | | - <version>${bouncycastle.bcprov.version}</version> |
| 133 | + <version>${bcprov-jdk15on.version}</version> |
126 | 134 | <optional>true</optional> |
127 | 135 | </dependency> |
128 | 136 | <!-- dependencies for Client Certificate Authentication --> |
129 | 137 | <dependency> |
130 | 138 | <groupId>org.bouncycastle</groupId> |
131 | 139 | <artifactId>bcpkix-jdk15on</artifactId> |
132 | | - <version>${bouncycastle.bcpkix.version}</version> |
| 140 | + <version>${bcpkix-jdk15on.version}</version> |
133 | 141 | <optional>true</optional> |
134 | 142 | </dependency> |
135 | 143 | <!-- dependencies provided by an OSGi-Framework --> |
136 | 144 | <dependency> |
137 | 145 | <groupId>org.osgi</groupId> |
138 | 146 | <artifactId>org.osgi.core</artifactId> |
139 | | - <version>${osgi.core.version}</version> |
| 147 | + <version>${org.osgi.core.version}</version> |
140 | 148 | <scope>provided</scope> |
141 | 149 | </dependency> |
142 | 150 | <dependency> |
143 | 151 | <groupId>org.osgi</groupId> |
144 | 152 | <artifactId>org.osgi.compendium</artifactId> |
145 | | - <version>${osgi.comp.version}</version> |
| 153 | + <version>${org.osgi.compendium.version}</version> |
146 | 154 | <scope>provided</scope> |
147 | 155 | </dependency> |
148 | 156 |
|
|
539 | 547 | </goals> |
540 | 548 | </execution> |
541 | 549 | <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> |
548 | 556 | </executions> |
549 | 557 | <configuration> |
550 | 558 | <excludes> |
|
0 commit comments