Maven Flyway 执行插件
Maven Flyway Executing Plugin
我有一个 flyway 项目,在 任何 调用 flyway:migrate
时,我想 运行 groovy 插件执行一些 groovy 脚本。这是我的 pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.4.15</version>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<version>5.0.6</version>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>6.1.0.jre8</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>LOCAL</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>groovy-maven-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<source>${pom.basedir}/fooScript.groovy</source>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
<version>5.0.6</version>
<configuration>
<url>${url}</url>
<user>${user}</user>
<password>${pass}</password>
<locations>${locations}</locations>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
但是 groovy 插件仅在您 flyway:migrate
使用 LOCAL 配置文件集时才会执行。
无论配置文件如何,每次调用 flyway:migrate
时如何设置插件 运行。
完全改变方法怎么样?如果您切换到基于 Java 的 Flyway 回调,您试图完成的实际上是微不足道的,这反过来会调用您想要的 Groovy 脚本。参见 https://flywaydb.org/documentation/callbacks
我有一个 flyway 项目,在 任何 调用 flyway:migrate
时,我想 运行 groovy 插件执行一些 groovy 脚本。这是我的 pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.4.15</version>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<version>5.0.6</version>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>6.1.0.jre8</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>LOCAL</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>groovy-maven-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<source>${pom.basedir}/fooScript.groovy</source>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
<version>5.0.6</version>
<configuration>
<url>${url}</url>
<user>${user}</user>
<password>${pass}</password>
<locations>${locations}</locations>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
但是 groovy 插件仅在您 flyway:migrate
使用 LOCAL 配置文件集时才会执行。
无论配置文件如何,每次调用 flyway:migrate
时如何设置插件 运行。
完全改变方法怎么样?如果您切换到基于 Java 的 Flyway 回调,您试图完成的实际上是微不足道的,这反过来会调用您想要的 Groovy 脚本。参见 https://flywaydb.org/documentation/callbacks