...
Please use the following code to get the old functionality:
Code Block | ||
---|---|---|
| ||
buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
mavenLocal()
}
dependencies {
classpath "us.ihmc:ihmc-build:0.15.1" // new build plugin without ci
classpath "us.ihmc:ihmc-ci-plugin:0.18.0" // apply ci separately now
}
}
apply plugin: "us.ihmc.ihmc-build"
apply plugin: "us.ihmc.ihmc-ci-plugin"
println testSuites.convertJobNameToHyphenatedName("AtlasAFast") // replaces removed method
testDependencies {
compile group: "us.ihmc", name: "ihmc-ci-core-api", version: "0.18.0" // these were auto included before
} |