Skip to content

Commit

Permalink
Adding placeholder values to test configurations which lacked them an…
Browse files Browse the repository at this point in the history
…d were generating unmatched placeholder errors
  • Loading branch information
Pair16 authored and Pair16 committed May 9, 2013
1 parent a621621 commit 72e01c3
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
<location>migrations2</location>
</locations>
<placeholders>
<name>Joe TestUser</name>
<name2>Dr. Jones</name2>
</placeholders>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
<driver>org.hsqldb.jdbcDriver</driver>
<url>jdbc:hsqldb:file:${project.build.directory}/db/flyway_sample;shutdown=true</url>
<user>SA</user>
<placeholders>
<name>Joe TestUser</name>
</placeholders>
</configuration>
</plugin>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
<schemas>
<schema>PUBLIC</schema>
</schemas>
<placeholders>
<name>Joe TestUser</name>
</placeholders>
</configuration>
</plugin>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
<configuration>
<driver>org.hsqldb.jdbcDriver</driver>
<url>jdbc:hsqldb:file:${project.build.directory}/db/flyway_sample;shutdown=true</url>
<placeholders>
<name>Joe TestUser</name>
</placeholders>
</configuration>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
<configuration>
<driver>org.h2.Driver</driver>
<url>jdbc:h2:file:${project.build.directory}/db/flyway_sample</url>
<placeholders>
<name>Joe TestUser</name>
</placeholders>
</configuration>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
<driver>org.hsqldb.jdbcDriver</driver>
<url>jdbc:hsqldb:file:${project.build.directory}/db/flyway_sample;shutdown=true</url>
<serverId>flyway-largetest</serverId>
<placeholders>
<name>Joe TestUser</name>
</placeholders>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 72e01c3

Please sign in to comment.