-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathbuild.gradle
More file actions
23 lines (17 loc) · 622 Bytes
/
build.gradle
File metadata and controls
23 lines (17 loc) · 622 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
description = "Testcontainers :: MS SQL Server"
dependencies {
api project(':jdbc')
compileOnly project(':r2dbc')
compileOnly 'io.r2dbc:r2dbc-mssql:1.0.2.RELEASE'
testImplementation project(':jdbc-test')
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.1.1.jre8-preview'
testImplementation project(':r2dbc')
testRuntimeOnly 'io.r2dbc:r2dbc-mssql:1.0.2.RELEASE'
// MSSQL's wait strategy requires the JDBC driver
testImplementation testFixtures(project(':r2dbc'))
}
tasks.japicmp {
classExcludes = [
"org.testcontainers.containers.MSSQLServerContainer"
]
}