Skip to content

Commit 2b0c2df

Browse files
Bump jooq from 3.13.5 to 3.14.8 (#1216)
* Bump jooq from 3.13.5 to 3.14.8 Bumps jooq from 3.13.5 to 3.14.8. Signed-off-by: dependabot-preview[bot] <[email protected]> * Fix compile error Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Graham Crockford <[email protected]>
1 parent 73c2c99 commit 2b0c2df

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

orko-base/src/test/java/com/gruelbox/orko/db/TestDbDump.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ public Collection<Table> tables() {
104104
@Test
105105
public void testDbDump() throws IOException, SQLException {
106106
DataSource dataSource = connectionResources.getDataSource();
107-
try (Connection conn = dataSource.getConnection();
108-
DSLContext dsl = DSL.using(conn, jooqDialect(H2.IDENTIFIER))) {
107+
try (Connection conn = dataSource.getConnection()) {
108+
DSLContext dsl = DSL.using(conn, jooqDialect(H2.IDENTIFIER));
109109

110110
conn.setAutoCommit(true);
111111

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@
437437
<dependency>
438438
<groupId>org.jooq</groupId>
439439
<artifactId>jooq</artifactId>
440-
<version>3.13.5</version>
440+
<version>3.14.8</version>
441441
</dependency>
442442

443443
<dependency>

0 commit comments

Comments
 (0)