us.ihmc.log-tools-plugin
Owner: Duncan Calvert
Message logging tools for IHMC Robotics.
https://github.com/ihmcrobotics/log-tools
Sources: https://github.com/ihmcrobotics/log-tools
Version 0.6.4 (latest)
Created 13 November 2024.
Message logging tools for IHMC Robotics.
Add this plugin to your build using the plugins DSL:
plugins {
id("us.ihmc.log-tools-plugin") version "0.6.4"
}
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("us.ihmc.log-tools-plugin:us.ihmc.log-tools-plugin.gradle.plugin:0.6.4") }
It can then be applied in the precompiled script plugin:plugins { id("us.ihmc.log-tools-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("us.ihmc.log-tools-plugin:us.ihmc.log-tools-plugin.gradle.plugin:0.6.4") } } apply(plugin = "us.ihmc.log-tools-plugin")
- Applying plugins to all subprojects .