Skip to content

Commit

Permalink
Fix for dep upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
galovics committed May 15, 2024
1 parent 649186c commit b14443e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;

@Configuration
@ComponentScan
public class ReporterConfiguration {
@Bean
@Primary
public ObjectMapper objectMapper() {
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.enable(SerializationFeature.INDENT_OUTPUT);
Expand Down

0 comments on commit b14443e

Please sign in to comment.