Created
April 29, 2019 19:38
-
-
Save Opalo/c6a2da334aca8e491964577efc40f53c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val dbUser = System.getProperty("db.user", "test") | |
val dbPass = System.getProperty("db.pass", "test") | |
val dbUrl = System.getProperty("db.url", "jdbc:mysql://localhost:3306/test") | |
enablePlugins(FlywayPlugin) | |
flywayUrl := dbUrl | |
flywayUser := dbUser | |
flywayPassword := dbPass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment