I have both GSON and Jackson in a project using RestAssured and I want to use GSON. The official documentation does not provide a clear example. I tried several configs, but it does not seem to work. Here's my config, am I missing something?
RestAssured.config = RestAssuredConfig.config()
.decoderConfig(new DecoderConfig("UTF-8"))
.encoderConfig(new EncoderConfig("UTF-8", "UTF-8"))
.objectMapperConfig(new ObjectMapperConfig(GSON));