Skip to content

Instantly share code, notes, and snippets.

@Opalo
Created April 29, 2019 19:38
Show Gist options
  • Save Opalo/c6a2da334aca8e491964577efc40f53c to your computer and use it in GitHub Desktop.
Save Opalo/c6a2da334aca8e491964577efc40f53c to your computer and use it in GitHub Desktop.
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