Sha256: ca4603bce8fec54f40768142e40f75a61deb20193b52f57f0340594fba6501e6
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 KB
Contents
buildscript { ext.kotlinVersion = '1.2.31' 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.5.0" } } apply plugin: "kotlin" apply plugin: "com.github.kamatama41.embulk" apply plugin: 'net.researchgate.release' repositories { mavenCentral() jcenter() maven { url 'http://kamatama41.github.com/maven-repository/repository' } } sourceCompatibility = 1.8 targetCompatibility = 1.8 dependencies { compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion" testCompile "com.github.kamatama41:embulk-test-helpers:0.4.0" } embulk { version = "0.9.7" 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
embulk-filter-hash-0.4.0 | build.gradle |