Posts

Implement slf4j logger in automation projects

Check for latest plugins from: https://mvnrepository.com/artifact/org.projectlombok/lombok Search for 'slf4j' (https://mvnrepository.com/search?q=slf4j) and 'slf4j-simple' https://mvnrepository.com/artifact/org.slf4j/slf4j-simple From the latest version page, copy the maven dependencies and add them on your pom.xml file. The dependencies would be like this: <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->             <dependency>                 <groupId>org.projectlombok</groupId>                 <artifactId>lombok</artifactId>                 <version>1.18.12</version>                 <scope>test</scope>     ...
Recent posts