kenkyee
06/28/2021, 2:43 PMdinomite
06/28/2021, 2:55 PMget
to field
(or just add an additional annotation targeted at field
)?kenkyee
06/28/2021, 5:40 PM@JsonPropertyOrder(
"module", "filePath", "line", "offset", "severity", "uniqueId", "category", "description",
"fileCount, linesOfCode", "complexityTotal", "coverageTotal",
"numBlockers", "numCriticals", "numMajors", "numMinors", "numInfos"
)
I'm probably going to see if I can write up a sample and file an issue w/ it.
Going to punt and use a more crude Kotlin CSV library instead (com.github.doyaaaaaken:kotlin-csv-jvm) because I need to get this to work soon...val schema = CsvSchema.builder()
.addColumn("Module")
...
.addColumn("NumMinors")
.addColumn("NumInfos")
.build()
.withHeader()
Kinda hacky but 🤷