this post was submitted on 29 Oct 2023
11 points (92.3% liked)

Java

1394 readers
13 users here now

For discussing Java, the JVM, languages that run on the JVM, and other related technologies.

founded 1 year ago
MODERATORS
11
submitted 1 year ago* (last edited 1 year ago) by lysdexic to c/java
 

Saved you a click:

  • JaCoCo for test coverage,
  • PMD for static code analysis
  • SpotBugs (successor of FindBugs) for linting and enforce coding style/best practices,
  • japicmp to check semantic versioning
  • codecov and checkstyle.
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 1 year ago* (last edited 1 year ago)

To build on this:

  • Micrometer to measure performance of potentially complex code
  • BeanRunner to test POJOs without writing much code.