The JBang Gradle plugin allows JBang scripts to be executed during a Gradle build.
The plugin attempts to use an existing JBang installation. If no JBang installation is found, the plugin will install JBang by downloading and caching the latest version binaries (in your local Gradle cache directory) for subsequent runs.
This plugin adds a new task of type dev.jbang.gradle.tasks.JBangTask
named jbang
that accepts the
following properties
Property | Type | Option | System | Environment | Default | Required |
---|---|---|---|---|---|---|
script |
String |
jbang-script |
jbang.script |
JBANG_SCRIPT |
✅ |
|
args |
List<String> |
jbang-args |
jbang.args |
JBANG_ARGS |
[ ] |
❌ |
trusts |
List<String> |
jbang-trusts |
jbang.trusts |
JBANG_TRUSTS |
[ ] |
❌ |
version |
String |
jbang-version |
jbang.version |
JBANG_VERSION |
latest |
❌ |
installDir |
Directory |
jbang.install.dir |
JBANG_INSTALL_DIR |
$gradleUserHomeDir/caches/jbang |
❌ |
script |
The script to be executed by JBang. |
args |
The arguments to be used in the JBang script (if any) |
trusts |
If the script resides in a remote location, this parameter specifies what URLs should be trusted. See URLs from Trusted Sources for more information |
version |
If your environment lacks the JBang binaries in the PATH, you can specify the JBang version to be installed.
The default value is set to |
Task property values may be specified directly or using their respective environment variable, System property, project property, or task option respectively, for example the following invocations are equivalent
$ gradle jbang --jbang-script hello.jsh --jbang-args="Hello world"
// system properties
$ gradle jbang -Djbang.script=hello.jsh -Djbang.args="Hello world"
// project properties
$ gradle jbang -Pjbang.script=hello.jsh -Pjbang.args="Hello world"
// environment variables
$ export JBANG_SCRIPT="hello.jsh"
$ export JBANG_ARGS="Hello world"
$ gradle jbang
If the org.kordamp.gradle.inline
plugin
were to be applied to your build (via settings.gradle
) then you may invoke this plugin without modifying your build file
$ gradle dev.jbang:jbang-gradle-plugin:0.2.0:jbang -Pjbang.script=hello.java
Option #1
buildscript {
repositories {
gradlePluginPortal()
}
dependencies {
classpath 'dev.jbang:jbang-gradle-plugin:0.2.0'
}
}
apply plugin: 'dev.jbang.jbang'
Option #2
plugins {
id 'dev.jbang' version '0.2.0'
}