us.ihmc.scs
Owner:
Duncan Calvert
Runtime configuration for IHMC's Simulation Construction Set.
https://github.com/ihmcrobotics/simulation-construction-set
Sources: https://github.com/ihmcrobotics/simulation-construction-set
Version 0.5 (latest)
Created 24 November 2020.
Runtime configuration for IHMC's Simulation Construction Set.
Add this plugin to your build using the plugins DSL:
plugins {
id("us.ihmc.scs") version "0.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.scs:us.ihmc.scs.gradle.plugin:0.5") }
It can then be applied in the precompiled script plugin:plugins { id("us.ihmc.scs") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("us.ihmc.scs:us.ihmc.scs.gradle.plugin:0.5") } } apply(plugin = "us.ihmc.scs")
- Applying plugins to all subprojects .