com.peterabeles.nativehelper
Owner: Peter Abeles
Auto-generates version class file using Git and Gradle
https://github.com/lessthanoptimal/native-helper-plugin
Sources: https://github.com/lessthanoptimal/native-helper-plugin
Version 1.0.0 (latest)
Created 30 January 2019.
Auto-generates version class file using Git and Gradle
Add this plugin to your build using the plugins DSL:
plugins {
id("com.peterabeles.nativehelper") 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.peterabeles.nativehelper:com.peterabeles.nativehelper.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.peterabeles.nativehelper") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.peterabeles.nativehelper:com.peterabeles.nativehelper.gradle.plugin:1.0.0") } } apply(plugin = "com.peterabeles.nativehelper")
- Applying plugins to all subprojects .