net.apollofops.first.VendorTools
Owner:
Apollo Nargang
A better build system for WPILib Vendor dependencies.
https://coffeecoder1.github.io/VendorTools/
Sources: https://github.com/CoffeeCoder1/VendorTools
Version 2025.1.0
Created 02 March 2025.
A better build system for WPILib Vendor dependencies.
Add this plugin to your build using the plugins DSL:
plugins {
id("net.apollofops.first.VendorTools") version "2025.1.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("net.apollofops.first.VendorTools:net.apollofops.first.VendorTools.gradle.plugin:2025.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("net.apollofops.first.VendorTools") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.apollofops.first.VendorTools:net.apollofops.first.VendorTools.gradle.plugin:2025.1.0") } } apply(plugin = "net.apollofops.first.VendorTools")
- Applying plugins to all subprojects .