-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathbuild.gradle
More file actions
21 lines (18 loc) · 897 Bytes
/
build.gradle
File metadata and controls
21 lines (18 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
description = "Testcontainers :: Azure"
dependencies {
api project(':testcontainers')
api project(':testcontainers-mssqlserver')
// TODO use JDK's HTTP client and/or Apache HttpClient5
shaded 'com.squareup.okhttp3:okhttp:5.3.2'
testImplementation platform("com.azure:azure-sdk-bom:1.3.5")
testImplementation 'com.azure:azure-cosmos'
testImplementation 'com.azure:azure-storage-blob'
testImplementation 'com.azure:azure-storage-queue'
testImplementation 'com.azure:azure-data-tables'
testImplementation 'com.azure:azure-messaging-eventhubs'
testImplementation 'com.azure:azure-messaging-servicebus'
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.3.0.jre8-preview'
}
tasks.japicmp {
methodExcludes = ["org.testcontainers.azure.ServiceBusEmulatorContainer#withMsSqlServerContainer(org.testcontainers.containers.MSSQLServerContainer)"]
}