Monthly Archives: July 2021

Code coverage with Gradle and Jacoco

Recently I’ve been trying to configure code coverage with Gradle and Jacoco. I started on the official docs page here: https://docs.gradle.org/current/userguide/jacoco_plugin.html However, this page wasn’t that helpful. One key requirement I have is that I want to be able to … Continue reading

Posted in Gradle | Tagged | Leave a comment

Java XML processing with JAXB and special characters

When processing XML, it is important to understand that there are two kinds of special characters: Characters that are permitted, but must either be escaped or inside a CDATA block. Control characters that are not permitted at all. Characters that … Continue reading

Posted in Java, XML | Tagged , | Leave a comment