Is there a way for executing a maven liquibase project using its GAV and supply maven profile to be used in its pom and other arguments, something like:
mvn com.group:liquibase-db:8.0.3 -Plocal,create clean install -DdefaultSchemaName=myschema
I know the same can be executed by explicitly giving the path to the project's pom and it works fine.
mvn -f <path_to_liquibase-db_pom> -Plocal,create clean install -DdefaultSchemaName=myschema
But the thing is I need to run this command using project coordinates only. Is it even possible to do that?