-
Notifications
You must be signed in to change notification settings - Fork 89
/
build.gradle
55 lines (50 loc) · 2.11 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
dependencies {
implementation(project(path: ":embulk-output-jdbc", configuration: "runtimeElements"))
implementation 'com.microsoft.sqlserver:mssql-jdbc:7.2.2.jre8'
implementation 'net.sourceforge.jtds:jtds:1.3.1'
// embulk-output-oracle has used jnr-ffi included in JRuby, which had been embedded with Embulk till v0.10.20.
// JRuby is, however, no longer loaded in Embulk's top-level class loader, nor built-in in Embulk since v0.10.21.
//
// Here, it is including dependencies on jnr-ffi and its transitive dependencies, instead of JRuby embedded in Embulk.
// The versions are the same as JRuby 9.1.15.0, which were embedded in Embulk v0.10.20 and earlier for a long time.
implementation "com.github.jnr:jnr-ffi:2.1.7"
implementation "com.github.jnr:jnr-x86asm:1.0.2"
implementation "com.github.jnr:jffi:1.2.16"
implementation "org.ow2.asm:asm-analysis:5.0.4"
implementation "org.ow2.asm:asm-commons:5.0.4"
implementation "org.ow2.asm:asm-tree:5.0.4"
implementation "org.ow2.asm:asm-util:5.0.4"
implementation "org.ow2.asm:asm:5.0.4"
testImplementation project(':embulk-output-jdbc').sourceSets.test.output
}
embulkPlugin {
mainClass = "org.embulk.output.SQLServerOutputPlugin"
category = "output"
type = "sqlserver"
}
publishing {
publications {
maven(MavenPublication) {
pom { // https://central.sonatype.org/pages/requirements.html
developers {
developer {
name = "Hitoshi Tanaka"
email = "[email protected]"
}
developer {
name = "Yui Kitsu"
email = "[email protected]"
}
developer {
name = "Hieu Duong"
email = "[email protected]"
}
developer {
name = "Dai MIKURUBE"
email = "[email protected]"
}
}
}
}
}
}