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

@@ -89,7 +89,7 @@ jacocoTestReport {
afterEvaluate {
classDirectories.setFrom(files(classDirectories.files.collect {
fileTree(dir: it,
exclude: "edu/wpi/**"
exclude: "edu/wpi/**"
)
}))
}

View File

@@ -78,7 +78,7 @@ ext.createComponentZipTasks = { components, names, base, type, project, func ->
if (it in NativeLibrarySpec && stringNames.contains(it.name)) {
it.binaries.each {
if (!it.buildable) return
def target = nativeUtils.getPublishClassifier(it)
def target = nativeUtils.getPublishClassifier(it)
if (configMap.containsKey(target)) {
configMap.get(target).add(it)
} else {
@@ -128,7 +128,7 @@ ext.createAllCombined = { list, name, base, type, project ->
list.each {
if (it.name.endsWith('debug')) return
from project.zipTree(it.archiveFile)
from project.zipTree(it.archiveFile)
dependsOn it
}
}
@@ -140,7 +140,6 @@ ext.createAllCombined = { list, name, base, type, project ->
}
return task
}
// Create the standard ZIP format for the dependencies.