Hi,
I try to run liquibase update with maven : mvn liquibase:update
my pom:
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.20</version>
</dependency>
...
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>4.2.2</version>
<configuration>
<propertyFile>src/main/resources/liquibase.properties</propertyFile>
</configuration>
</plugin>
I have :
Failed to execute goal org.liquibase:liquibase-maven-plugin:4.2.2:update (default-cli) on project proxy-add: The database URL has not been specified either as a parameter or in a properties file. → [Help 1]
But in first past of the log i have:
[INFO] Parsing Liquibase Properties File
[INFO] File: src/main/resources/liquibase.properties
[INFO] ‘liquibase.enabled’ in properties file is not being used by this task.
[INFO] ‘liquibase.change-log’ in properties file is not being used by this task.
[INFO] ‘liquibase.url’ in properties file is not being used by this task.
So my liquibase properties file is found but liquibase don’t use the properties inside.
Anyone have a solution for this issues ?