Bump spotless version and update config for groovyGradle stuff (#979)

This commit is contained in:
Sriman Achanta
2023-10-24 23:02:59 -04:00
committed by GitHub
parent df45bc2d73
commit adc30336d2
13 changed files with 97 additions and 47 deletions

View File

@@ -78,7 +78,11 @@ wpi.sim.addDriverstation()
// in order to make them all available at runtime. Also adding the manifest so WPILib
// knows where to look for our Robot Class.
jar {
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
from {
configurations.runtimeClasspath.collect {
it.isDirectory() ? it : zipTree(it)
}
}
manifest edu.wpi.first.gradlerio.GradleRIOPlugin.javaManifest(ROBOT_MAIN_CLASS)
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}