-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
95 lines (86 loc) · 2.89 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
plugins {
id 'com.jfrog.bintray' version '1.6'
id 'com.github.jruby-gradle.base' version '1.2.1'
id 'java'
id 'checkstyle'
}
import com.github.jrubygradle.JRubyExec
repositories {
mavenCentral()
jcenter()
maven {
url "http://dl.bintray.com/embulk-output-jdbc/maven"
}
}
configurations {
provided
defaultJdbcDriver
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
version = "0.1.4"
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile "org.embulk:embulk-core:0.9.15"
provided "org.embulk:embulk-core:0.9.15"
compile "org.embulk.output.jdbc:embulk-output-jdbc:0.8.7"
compile "ru.yandex.clickhouse:clickhouse-jdbc:0.2.4"
defaultJdbcDriver "ru.yandex.clickhouse:clickhouse-jdbc:0.2.4"
testCompile "junit:junit:4.+"
testCompile "org.embulk:embulk-core:0.9.15:tests"
testCompile "org.embulk:embulk-standards:0.9.15"
}
task classpath(type: Copy, dependsOn: ["jar"]) {
doFirst { file('classpath').deleteDir() }
from (configurations.runtime - configurations.provided - configurations.defaultJdbcDriver + files(jar.archivePath))
into 'classpath'
}
task defaultJdbcDriver(type: Copy, dependsOn: ["jar"]) {
doFirst { file('default_jdbc_driver').deleteDir() }
from (configurations.defaultJdbcDriver)
into 'default_jdbc_driver'
}
clean {
delete 'classpath'
delete 'default_jdbc_driver'
}
checkstyle {
configFile = file("${project.rootDir}/config/checkstyle/checkstyle.xml")
toolVersion = '6.14.1'
}
checkstyleMain {
configFile = file("${project.rootDir}/config/checkstyle/default.xml")
ignoreFailures = true
}
checkstyleTest {
configFile = file("${project.rootDir}/config/checkstyle/default.xml")
ignoreFailures = true
}
task checkstyle(type: Checkstyle) {
classpath = sourceSets.main.output + sourceSets.test.output
source = sourceSets.main.allJava + sourceSets.test.allJava
}
task gem(type: JRubyExec, dependsOn: ['build', 'gemspec', 'classpath', 'defaultJdbcDriver']) {
jrubyArgs '-rrubygems/gem_runner', "-eGem::GemRunner.new.run(ARGV)", 'build'
scriptArgs "build/gemspec"
doLast { ant.move(file: "${project.name}-${project.version}.gem", todir: "pkg") }
}
task gemspec << {
file('build').mkdirs();
file('build/gemspec').write($/
Gem::Specification.new do |spec|
spec.name = "${project.name}"
spec.version = "${project.version}"
spec.authors = ["Karri Niemelä"]
spec.summary = %[Clickhouse output plugin for Embulk]
spec.description = %[Dumps records to Clickhouse.]
spec.email = ["[email protected]"]
spec.licenses = ["MIT"]
spec.homepage = "https://github.com/kakoni/embulk-output-clickhouse"
spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"] + Dir["default_jdbc_driver/*.jar"]
spec.test_files = spec.files.grep(%r"^(test|spec)/")
spec.require_paths = ["lib"]
end
/$)
}