From 1033bedec0090d03af9ea7065cf53198c9083bf6 Mon Sep 17 00:00:00 2001 From: siarhei_hrabko Date: Wed, 7 Aug 2024 10:23:28 +0300 Subject: [PATCH] EPMRPP-92525 fix jooq conversion --- jooq.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jooq.gradle b/jooq.gradle index 7ef1e6402..3c6ee87a8 100644 --- a/jooq.gradle +++ b/jooq.gradle @@ -25,7 +25,7 @@ jooq { userType = "java.time.Instant" // Associate that custom type with your converter. - converter = "com.epam.ta.reportportal.entity.converters.InstantConverter" + converter = "com.epam.ta.reportportal.dao.converters.InstantConverter" // A Java regex matching fully-qualified columns, attributes, parameters. Use the pipe to separate several expressions. types = "TIMESTAMP" @@ -48,5 +48,5 @@ jooq { } generateSampleJooqSchemaSource { - enabled = false + enabled = true }