-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
50 lines (43 loc) · 1.3 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
buildscript {
ext.kotlinVersion = '1.2.10'
repositories {
mavenCentral()
jcenter()
maven { url 'http://kamatama41.github.com/maven-repository/repository' }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "com.github.kamatama41:gradle-embulk-plugin:0.1.4"
classpath "net.researchgate:gradle-release:2.6.0"
}
}
apply plugin: "kotlin"
apply plugin: "com.github.kamatama41.embulk"
apply plugin: "net.researchgate.release"
compileJava {
options.compilerArgs = ['-Xlint:all']
}
repositories {
mavenCentral()
maven { url 'http://kamatama41.github.com/maven-repository/repository' }
}
sourceCompatibility = 1.7
targetCompatibility = 1.7
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
compile "com.google.cloud:google-cloud-bigquery:0.32.0-beta"
}
embulk {
version = "0.8.39"
category = "input"
name = "embulk-input-bigquery-kotlin"
authors = ["Yuji Koyano"]
email = "[email protected]"
description = "embulk input plugin from bigquery written kotlin."
licenses = ["MIT"]
homepage = "https://github.com/ykoyano/embulk-input-bigquery-kotlin"
}
release {
git { requireBranch = 'master' }
}
afterReleaseBuild.dependsOn gemPush