com.softwareag.scriptpack
Owner: Software AG Bot
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).
Add this plugin to your build using the plugins DSL:
plugins {
id("com.softwareag.scriptpack") version "1.0.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.softwareag.scriptpack:com.softwareag.scriptpack.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.softwareag.scriptpack") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.softwareag.scriptpack:com.softwareag.scriptpack.gradle.plugin:1.0.0") } } apply(plugin = "com.softwareag.scriptpack")
- Applying plugins to all subprojects .