我想使用carbonfive进行数据库修补。我找不到在build.gradle文件中使用的插件。有人可以建议吗?

时间:2019-02-08 10:10:17

标签: gradle dbmigrate

如何在gradle中使用以下插件? 我正在使用Spring Boot和mysql db。我需要此插件来进行数据库修补。

另外,应该在gradle构建中运行的任务名称是什么。例如。对于飞路,它是flyWayMigrate。

//Maven code
<plugins>
       <plugin>
            <groupId>com.carbonfive.db-support</groupId>
            <artifactId>db-migration-maven-plugin</artifactId>
            <version>RELEASE</version>
            <configuration>
                <url>jdbc:mysql://localhost:3306/bb</url>
                <username>bb</username>
                <password>bb</password>
            </configuration>
            <dependencies>
                <dependency>
                    <groupId>mysql</groupId>
                    <artifactId>mysql-connector-java</artifactId>
                    <version>5.1.6</version>
                </dependency>
            </dependencies>
        </plugin>
      </plugins>

0 个答案:

没有答案