Owner:
Duncan Calvert
Message logging tools for IHMC Robotics.
Version 0.6.5 (latest)
Created 04 February 2025.
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.5"
}
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.5") }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.5") } } apply(plugin = "us.ihmc.log-tools-plugin") - Applying plugins to all subprojects .