我的 pom 文件中有我的标准 flyway 配置,我正在尝试通过系统属性覆盖,如此处所述。
这是我在 pom 文件中的配置:
<plugin>
<groupId>com.googlecode.flyway</groupId>
<artifactId>flyway-maven-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<url>dbUrl</url>
<user>dbUser</user>
<password>dbPass</password>
<schemas>
<schema>core</schema>
<schema>public</schema>
</schemas>
</configuration>
</plugin>
以下是我正在运行的命令行:
mvn clean compile flyway:migrate -Dflyway.url=anotherDbUrl -Dflyway.user=anotherDbUser -Dflyway.password=anotherDbPass
上面链接中的文档说System properties > Maven properties > Plugin configuration
。我错过了什么吗?