{"id":18129403,"url":"https://github.com/kamatama41/gradle-embulk-plugin","last_synced_at":"2026-04-28T00:33:19.296Z","repository":{"id":146729049,"uuid":"83066610","full_name":"kamatama41/gradle-embulk-plugin","owner":"kamatama41","description":"A Gradle plugin that provides some helpful tasks for your Embulk plugin's development.","archived":false,"fork":false,"pushed_at":"2019-03-31T06:16:33.000Z","size":275,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-21T03:07:07.179Z","etag":null,"topics":["embulk","gradle"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kamatama41.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-02-24T17:33:17.000Z","updated_at":"2019-04-22T10:31:56.000Z","dependencies_parsed_at":"2023-04-25T20:46:42.795Z","dependency_job_id":null,"html_url":"https://github.com/kamatama41/gradle-embulk-plugin","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/kamatama41/gradle-embulk-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamatama41%2Fgradle-embulk-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamatama41%2Fgradle-embulk-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamatama41%2Fgradle-embulk-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamatama41%2Fgradle-embulk-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kamatama41","download_url":"https://codeload.github.com/kamatama41/gradle-embulk-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamatama41%2Fgradle-embulk-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32361477,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["embulk","gradle"],"created_at":"2024-11-01T10:09:16.528Z","updated_at":"2026-04-28T00:33:19.283Z","avatar_url":"https://github.com/kamatama41.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CircleCI](https://circleci.com/gh/kamatama41/gradle-embulk-plugin.svg?style=svg)](https://circleci.com/gh/kamatama41/gradle-embulk-plugin)\n\n# gradle-plugin-embulk\nThis Gradle plugin provides you with some tasks to help your [Embulk](http://www.embulk.org) plugin development.\n\n## Supported Gradle version\nIt's tested on Gradle 4.10.3. It might not work on other version.\n\n## Getting started\nAdd the snippets to your build.gradle\n\n```gradle\nbuildscript {\n    repositories {\n        jcenter()\n        maven { url 'http://kamatama41.github.com/maven-repository/repository' }\n    }\n    dependencies {\n        classpath \"com.github.kamatama41:gradle-embulk-plugin:\u003clatest-version\u003e\"\n    }\n}\n\napply plugin: \"com.github.kamatama41.embulk\"\n\nembulk {\n    version = \"0.8.18\"\n    category = \"file-input\"\n    name = \"xlsx\"\n    authors = [\"A User\"]\n    email = \"a.user@example.com\"\n    homepage = \"https://github.com/a.user/embulk-input-xlsx\"\n}\n```\n\nSo that you can generate your plugin template with the command `(./gradlew|gradle) newPlugin`\n\n```\n% gradle newPlugin\nStarting a Gradle Daemon (subsequent builds will be faster)\n:embulkSetup\nSetting Embulk version to 0.8.18\n:embulk_new_java-file-input_xlsx\n2017-03-21 04:12:05.020 +0900: Embulk v0.8.18\nCreating embulk-input-xlsx/\n  Creating embulk-input-xlsx/README.md\n  Creating embulk-input-xlsx/LICENSE.txt\n  Creating embulk-input-xlsx/.gitignore\n  Creating embulk-input-xlsx/gradle/wrapper/gradle-wrapper.jar\n  Creating embulk-input-xlsx/gradle/wrapper/gradle-wrapper.properties\n  Creating embulk-input-xlsx/gradlew.bat\n  Creating embulk-input-xlsx/gradlew\n  Creating embulk-input-xlsx/config/checkstyle/checkstyle.xml\n  Creating embulk-input-xlsx/config/checkstyle/default.xml\n  Creating embulk-input-xlsx/build.gradle\n  Creating embulk-input-xlsx/lib/embulk/input/xlsx.rb\n  Creating embulk-input-xlsx/src/main/java/org/embulk/input/xlsx/XlsxFileInputPlugin.java\n  Creating embulk-input-xlsx/src/test/java/org/embulk/input/xlsx/TestXlsxFileInputPlugin.java\n\nPlugin template is successfully generated.\nNext steps:\n\n  $ cd embulk-input-xlsx\n  $ ./gradlew package\n\n:newPlugin\n\nBUILD SUCCESSFUL\n\nTotal time: 13.166 secs\n```\n\n## Dependencies\nThis plugin automatically adds the following dependency into your project.\n- `org.embulk:embulk-core:\u003cversion\u003e`\n\n## Tasks\n- `newPlugin`: Generate a new plugin template\n- `classpath`: Copy jar files to classpath directory\n- `gemspec`: Generate a gemspec file for this plugin\n- `gem`: Generate a gem file\n- `package`: Generate a package, which is needed to run this plugin locally \n- `checkstyle`: Run a Checkstyle process\n- `gemPush`: Push gem file to rubygems.org\n- `embulkSetup`: Install a version of Embulk, which you specified by `version`\n- `embulk_#{command}`: Run an embulk command ([details](#embulk_command))\n\n### embulk_${command}\nYou can run an embulk command with a gradle task `embulk_*`, which can be added command arguments with `_`.\nAlso, this plugin automatically sets some arguments when executing a command such as `run` or `guess`,\nso you don't have to specify yaml path and package path by default.\n\n#### Examples\n- `(./gradlew|gradle) embulk_--version`\n  - This is equivalent to `embulk --version`\n\n- `(./gradlew|gradle) embulk_run`\n  - This is equivalent to `embulk run config.yml -L \u003cproject_root\u003e`\n\n- `(./gradlew|gradle) embulk_guess`\n  - This is equivalent to `embulk guess config.yml -o output.yml -L \u003cproject_root\u003e`\n\nIf you want to change `config.yml` or `output.yml` to other file, you can do it by passing a property `configYaml` or `outputYaml` such like following\n\n```sh\n$ ./gradlew embulk_guess -PconfigYaml=myconfig.yml -PoutputYaml=myoutput.yml\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkamatama41%2Fgradle-embulk-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkamatama41%2Fgradle-embulk-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkamatama41%2Fgradle-embulk-plugin/lists"}