|
MavenPlugin
Flyway Maven PluginInstallationFollow the instructions Goals
AuthenticationCredentials can be passed in any of the following ways: Directly in the configuration of the plugin...
<configuration>
<user>myUser</user>
<password>mySecretPwd</password>
...
</configuration>
...As system properties-Dflyway.user=myUser -Dflyway.password=mySecretPwd Loaded from the Maven settings.xml file<settings>
<servers>
<server>
<id>flyway-db</id>
<username>myUser</username>
<password>mySecretPwd</password>
</server>
</servers>
</settings>
| |||||||||||||||