-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
49 lines (42 loc) · 1.2 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
buildscript {
repositories {
jcenter()
maven { url 'http://kamatama41.github.com/maven-repository/repository' }
}
dependencies {
classpath "com.github.kamatama41:gradle-embulk-plugin:0.3.0"
classpath "net.researchgate:gradle-release:2.5.0"
}
}
plugins {
id "org.jetbrains.kotlin.jvm" version "1.3.10"
}
apply plugin: "com.github.kamatama41.embulk"
apply plugin: 'net.researchgate.release'
repositories {
maven { url 'http://kamatama41.github.com/maven-repository/repository' }
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib"
testCompile "com.github.kamatama41:embulk-test-helpers:0.6.0"
testRuntime "org.junit.jupiter:junit-jupiter-engine:5.3.2"
}
test {
useJUnitPlatform()
}
embulk {
version = "0.9.11"
category = "filter"
name = "hash"
authors = ["Shinichi Ishimura"]
email = "shiketaudonko41@gmail.com"
description = "Embulk filter plugin to convert an input to a hash value."
licenses = ["MIT"]
homepage = "https://github.com/kamatama41/embulk-filter-hash"
}
release {
git { requireBranch = 'master' }
}
afterReleaseBuild.dependsOn gemPush