How can I convert stats.json file in target>js section to csv file ???
You can write your own parser and execute it as a post-build action
I found a library in maven that can convert JSON to CSV. But the out I am getting is not formatted as I wanted.
The library I used is …
<dependency>
<groupId>com.github.agourlay</groupId>
<artifactId>json-2-csv_2.12</artifactId>
<version>0.3.0</version>
</dependency>