Skip to content

Commit

Permalink
Update README.md for v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dmikurube committed Dec 1, 2023
1 parent efb6a08 commit c5cb1ca
Showing 1 changed file with 30 additions and 2 deletions.
32 changes: 30 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,30 @@
Prepare an environment for running Embulk
==========================================
Gradle plugin to set up an environment for running Embulk
==========================================================

It'd be an alternative of `embulk mkbundle` so that users could maintain their Embulk plugin installations.

Note that everything (including syntax, behavior, and else) can change drastically in later versions. This is yet work-in-progress.

Usage
------

Set up Gradle 8.4 or later (often with [the Gradle wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html)), and prepare `build.gradle` like below.

```
plugins {
id "org.embulk.runset" version "0.1.0" // Just apply this Gradle plugin.
}
repositories {
mavenCentral()
}
installEmbulkRunSet {
into "path/to/embulk-home" // Set your Embulk home directory to install the Embulk plugins.
artifact "org.embulk:embulk-input-postgresql:0.13.2"
artifact group: "org.embulk", name: "embulk-input-s3", version: "0.6.0"
}
```

Then run `./gradlew installEmbulkRunSet`.

0 comments on commit c5cb1ca

Please sign in to comment.