us.ihmc.scs
所有者: Duncan Calvert
IHMC的仿真构造集的运行时配置。
https://github.com/ihmcrobotics/simulation-construction-set
源码: https://github.com/ihmcrobotics/simulation-construction-set
使用plugins DSL
plugins {
id("us.ihmc.scs") version "0.5"
}
使用遗产插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("us.ihmc:scs:0.5")
}
}
apply(plugin = "us.ihmc.scs")
使用plugins DSL
plugins {
id "us.ihmc.scs" version "0.5"
}
使用遗产插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "us.ihmc:scs:0.5"
}
}
apply plugin: "us.ihmc.scs"