plugins { id "com.jfrog.bintray" version "1.1" id "com.github.jruby-gradle.base" version "0.1.5" id "java" id "checkstyle" // for task download id "de.undercouch.download" version "3.4.2" } import com.github.jrubygradle.JRubyExec repositories { mavenCentral() jcenter() maven { url "https://dl.bintray.com/embulk-input-jdbc/maven" } } configurations { provided } version = "0.1.2" sourceCompatibility = 1.8 targetCompatibility = 1.8 dependencies { compile "org.embulk:embulk-core:0.8.39" provided "org.embulk:embulk-core:0.8.39" // TODO: maven... compile files ('build/AthenaJDBC41-1.1.0.jar') compile group: 'com.amazonaws', name: 'aws-java-sdk', version: '1.11.301' // compile group: 'com.amazonaws', name: 'aws-java-sdk-athena', version: '1.11.301' compile 'org.embulk.input.jdbc:embulk-input-jdbc:0.9.1' testCompile "junit:junit:4.+" } task downloadFile(type: Download) { src 'https://s3.amazonaws.com/athena-downloads/drivers/AthenaJDBC41-1.1.0.jar' dest buildDir onlyIfModified true } task classpath(type: Copy, dependsOn: ["downloadFile", "jar"]) { doFirst { file("classpath").deleteDir() } from (configurations.runtime - configurations.provided + files(jar.archivePath)) from ("build/AthenaJDBC41-1.1.0.jar'") into "classpath" } clean { delete "classpath" } 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: ["gemspec", "classpath"]) { jrubyArgs "-rrubygems/gem_runner", "-eGem::GemRunner.new.run(ARGV)", "build" script "${project.name}.gemspec" doLast { ant.move(file: "${project.name}-${project.version}.gem", todir: "pkg") } } task gemPush(type: JRubyExec, dependsOn: ["gem"]) { jrubyArgs "-rrubygems/gem_runner", "-eGem::GemRunner.new.run(ARGV)", "push" script "pkg/${project.name}-${project.version}.gem" } task "package"(dependsOn: ["gemspec", "classpath"]) { doLast { println "> Build succeeded." println "> You can run embulk with '-L ${file(".").absolutePath}' argument." } } task gemspec { ext.gemspecFile = file("${project.name}.gemspec") inputs.file "build.gradle" outputs.file gemspecFile doLast { gemspecFile.write($/ Gem::Specification.new do |spec| spec.name = "${project.name}" spec.version = "${project.version}" spec.authors = ["shinji19"] spec.summary = %[Athena input plugin for Embulk] spec.description = %[Loads records from Athena.] spec.email = [""] spec.licenses = ["MIT"] spec.homepage = "https://github.com/shinji19/embulk-input-athena" spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"] spec.test_files = spec.files.grep(%r"^(test|spec)/") spec.require_paths = ["lib"] #spec.add_dependency 'YOUR_GEM_DEPENDENCY', ['~> YOUR_GEM_DEPENDENCY_VERSION'] spec.add_development_dependency 'bundler', ['~> 1.0'] spec.add_development_dependency 'rake', ['>= 10.0'] end /$) } } clean { delete "${project.name}.gemspec" }