Search Gradle plugins

com.softwareag.scriptpack

Script Pack creates executable scripts for Windows and POSIX systems that contain arbitrary binary data (payload).

https://github.com/SoftwareAG/scriptpack

Sources: https://github.com/SoftwareAG/scriptpack.git

Version 1.0.0 (latest)

Created 03 September 2020.

Script Pack creates executable scripts for Windows and POSIX systems that contain arbitrary binary data (payload).

Using the plugins DSL:

plugins {
  id("com.softwareag.scriptpack") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.scriptpack.plugins:gradle-scriptpack:1.0.0")
  }
}

apply(plugin = "com.softwareag.scriptpack")

Using the plugins DSL:

plugins {
  id "com.softwareag.scriptpack" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.scriptpack.plugins:gradle-scriptpack:1.0.0"
  }
}

apply plugin: "com.softwareag.scriptpack"

Learn how to apply plugins to subprojects