Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Add maven dependency only for testing scope (version managed by our maven parent project pom.xml

    Code Block
    languagexml
    <dependency>
    	<groupId>ch.qos.logback</groupId>
    	<artifactId>logback-classic</artifactId>
    	<scope>test</scope>
    </dependency>
  • Configure logger (example configuration)

...