liquibase-maven-plugin 报错


在命令行中运行mvn liquibase:update命令。

老是build failure。提示“The driver has not been specified either as a parameter or in a properties file”错误。

找了好久的终于找到解决方法了

我在pom.xml文件中配置的是:

<plugin>  

<groupid>org.liquibase</groupid>

<artifactid>liquibase-plugin</artifactid>

<version>2.0.5</version>

<executions>  

<execution>  

<phase>process-resources</phase>

<configuration>

<propertyFileWillOverride>true</propertyFileWillOverride>
                    <propertyFile>src/main/resources/liquibase.properties</propertyFile>
                    <changeLogFile>${changeLogFile}</changeLogFile>
                    <driver>${driver}</driver>
                    <url>${url}</url>
                    <username>${username}</username>
                    <password>${password}</password>

</configuration>  

<goals>

<goal>update</goal>

</goals>  

</execution>  

</executions>

</plugin>

将上面的代码修改为:

<plugin>
                <groupId>org.liquibase</groupId>
                <artifactId>liquibase-maven-plugin</artifactId>
                <version>2.0.5</version>
                <configuration>
                    <propertyFileWillOverride>true</propertyFileWillOverride>
                    <propertyFile>src/main/resources/liquibase.properties</propertyFile>
                    <changeLogFile>${changeLogFile}</changeLogFile>
                    <driver>${driver}</driver>
                    <url>${url}</url>
                    <username>${username}</username>
                    <password>${password}</password>
                </configuration>
                <executions>
                    <execution>
                        <!-- 通过phase参数指定何时运行,一般为process-resources -->
                        <phase>process-resources</phase>
                        <goals>
                            <goal>update</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>


大功告成啦。哈哈

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值