Skip to content

Commit dcc82cf

Browse files
committed
chore(liquibase-maven-plugin): fix the path to changelog file.
Fixes the following error: [ERROR] Failed to execute goal org.liquibase:liquibase-maven-plugin:3.5.5:updateSQL (default-cli) on project mystamps: Error setting up or running Liquibase: /liquibase/changelog.xml does not exist [skip ci]
1 parent 4310947 commit dcc82cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,7 @@
10481048
<artifactId>liquibase-maven-plugin</artifactId>
10491049
<version>${liquibase.version}</version>
10501050
<configuration>
1051-
<changeLogFile>/liquibase/changelog.xml</changeLogFile>
1051+
<changeLogFile>${basedir}/src/main/resources/liquibase/changelog.xml</changeLogFile>
10521052
<propertyFile>${basedir}/src/main/resources/liquibase/liquibase.properties</propertyFile>
10531053
<migrationSqlOutputFile>/dev/stdout</migrationSqlOutputFile>
10541054
<!-- See also application-prod.properties -->

0 commit comments

Comments
 (0)