com.christophecvb.touchportal.plugin-packager
Touch Portal Plugin Packager - Use with Touch Portal Plugin SDK
https://github.com/ChristopheCVB/TouchPortalPluginSDK
Sources: https://github.com/ChristopheCVB/TouchPortalPluginSDK
Version 9.0.0-1700518835 (latest)
Created 20 November 2023.
Touch Portal Plugin Packager - Use with Touch Portal Plugin SDK
Add this plugin to your build using the plugins DSL:
plugins {
id("com.christophecvb.touchportal.plugin-packager") version "9.0.0-1700518835"
}
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.christophecvb.touchportal.plugin-packager:com.christophecvb.touchportal.plugin-packager.gradle.plugin:9.0.0-1700518835") }
It can then be applied in the precompiled script plugin:plugins { id("com.christophecvb.touchportal.plugin-packager") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.christophecvb.touchportal.plugin-packager:com.christophecvb.touchportal.plugin-packager.gradle.plugin:9.0.0-1700518835") } } apply(plugin = "com.christophecvb.touchportal.plugin-packager")
- Applying plugins to all subprojects .