Skip to content

Commit

Permalink
Merge pull request #87 from DaniRey/patch-1
Browse files Browse the repository at this point in the history
Avoid triggering compile tasks before flyway task
  • Loading branch information
davidmweber authored Feb 5, 2024
2 parents ca13d9a + 73fd94f commit 20ad9e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ libraryDependencies += "org.hsqldb" % "hsqldb" % "2.5.0"
flywayUrl := "jdbc:hsqldb:file:target/flyway_sample;shutdown=true"
flywayUser := "SA"
flywayPassword := ""
flywayLocations += "db/migration"
flywayLocations := Seq("filesystem:src/main/resources/db/migration")
flywayUrl in Test := "jdbc:hsqldb:file:target/flyway_sample;shutdown=true"
flywayUser in Test := "SA"
flywayLocations in Test := Seq("filesystem:src/main/resources/db/migration")
flywayPassword in Test := ""
```

Expand Down

0 comments on commit 20ad9e0

Please sign in to comment.