is it possible to have a dependency in my Maven pom, which will only be used locally in my development environment?
I need a dependency to PostgreSQL when developing locally in my IDE, since I am using Postgres only locally. On T, A and P environments we are using a different data source, so we do not want the dependency to postgres in the build there.
It is a Spring Boot application.
Looking for a solution,
Cheers! Kjeld