|
3 | 3 | - [node](#node) - hassle-free `npm install` and `npm run blah` |
4 | 4 | - [static server](#static-server) - a simple static file server |
5 | 5 | - [jte](#jte) - creates idiomatic Kotlin model classes for `jte` templates (strict nullability & idiomatic collections and generics) |
6 | | -- [flywayjooq](#flywayjooq) - coordinates docker, flyway, and jOOQ for fast testing |
| 6 | +- [flywayjooq](#flywayjooq) - coordinates docker, flyway, and jOOQ for fast testing |
7 | 7 |
|
8 | 8 | ## Node |
9 | 9 |
|
@@ -74,17 +74,17 @@ Compile tasks just need to depend on the `jooq` task. It will keep a live databa |
74 | 74 |
|
75 | 75 | ```gradle |
76 | 76 | flywayJooq { |
77 | | - // starts this docker container which needs to have postgres |
78 | | - setup.dockerComposeFile = file('src/test/resources/docker-compose.yml') |
79 | | - // writes out connection data to this file |
80 | | - setup.dockerConnectionParams = file('build/pgConnection.properties') |
81 | | - // migrates a template database to this |
82 | | - setup.flywayMigrations = file('src/main/resources/db/migration') |
83 | | - // dumps the final schema out to this |
84 | | - setup.flywaySchemaDump = file('src/test/resources/schema.sql') |
85 | | - // sets up jOOQ |
86 | | - configuration { |
87 | | - // jOOQ setup same as the official jOOQ plugin |
88 | | - } |
| 77 | + // starts this docker container which needs to have postgres |
| 78 | + setup.dockerComposeFile = file('src/test/resources/docker-compose.yml') |
| 79 | + // writes out connection data to this file |
| 80 | + setup.dockerConnectionParams = file('build/pgConnection.properties') |
| 81 | + // migrates a template database to this |
| 82 | + setup.flywayMigrations = file('src/main/resources/db/migration') |
| 83 | + // dumps the final schema out to this |
| 84 | + setup.flywaySchemaDump = file('src/test/resources/schema.sql') |
| 85 | + // sets up jOOQ |
| 86 | + configuration { |
| 87 | + // jOOQ setup same as the official jOOQ plugin |
| 88 | + } |
89 | 89 | } |
90 | | -``` |
| 90 | +``` |
0 commit comments