-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathbuild.gradle
57 lines (54 loc) · 2.03 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
dependencies {
implementation(project(path: ":embulk-input-jdbc", configuration: "runtimeElements"))
implementation "com.microsoft.sqlserver:mssql-jdbc:7.2.2.jre8"
implementation("com.microsoft.azure:adal4j:1.6.7") {
exclude group: 'org.slf4j', module: 'slf4j-api'
exclude group: "org.apache.commons", module: "commons-lang3"
}
implementation "net.sourceforge.jtds:jtds:1.3.1"
implementation "org.apache.commons:commons-lang3:3.4"
testImplementation "com.google.guava:guava:18.0"
testImplementation "org.embulk:embulk-formatter-csv:0.11.1"
testImplementation "org.embulk:embulk-input-file:0.11.0"
testImplementation "org.embulk:embulk-output-file:0.11.0"
testImplementation "org.embulk:embulk-parser-csv:0.11.3"
}
embulkPlugin {
mainClass = "org.embulk.input.sqlserver.SQLServerInputPlugin"
category = "input"
type = "sqlserver"
}
publishing {
publications {
maven(MavenPublication) {
pom { // https://central.sonatype.org/pages/requirements.html
developers {
developer {
name = "Hitoshi Tanaka"
email = "[email protected]"
}
developer {
name = "Sadayuki Furuhashi"
email = "[email protected]"
}
developer {
name = "Muga Nishizawa"
email = "[email protected]"
}
developer {
name = "Shintaro Kimura"
email = "[email protected]"
}
developer {
name = "Hieu Duong"
email = "[email protected]"
}
developer {
name = "Dai MIKURUBE"
email = "[email protected]"
}
}
}
}
}
}