org.frc4145.versiondata
Owner: Cole Tucker
plugin for managing software versions within an FRC gradle project
https://github.com/coalman321/versiondataplugin
Sources: https://github.com/coalman321/versiondataplugin
Version 1.02 (latest)
Created 23 January 2020.
plugin for managing software versions within an FRC gradle project
Add this plugin to your build using the plugins DSL:
plugins {
id("org.frc4145.versiondata") version "1.02"
}
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("org.frc4145.versiondata:org.frc4145.versiondata.gradle.plugin:1.02") }
It can then be applied in the precompiled script plugin:plugins { id("org.frc4145.versiondata") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.frc4145.versiondata:org.frc4145.versiondata.gradle.plugin:1.02") } } apply(plugin = "org.frc4145.versiondata")
- Applying plugins to all subprojects .