diff --git a/jooq/pom.xml b/jooq/pom.xml
new file mode 100644
index 0000000000..ef287d0292
--- /dev/null
+++ b/jooq/pom.xml
@@ -0,0 +1,46 @@
+
+
+
+ parent-modules
+ com.baeldung
+ 1.0.0-SNAPSHOT
+
+ 4.0.0
+
+ jooq
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+
+ 1.8
+ 1.8
+
+
+
+
+
+
+
+ org.jooq
+ jool
+ ${jool.version}
+
+
+ junit
+ junit
+ ${junit.version}
+ test
+
+
+
+
+ 0.9.12
+ 4.12
+
+
+
+
\ No newline at end of file
diff --git a/jooq/src/test/java/com/baeldung/JOOLTest.java b/jooq/src/test/java/com/baeldung/JOOLTest.java
new file mode 100644
index 0000000000..aa729a3edf
--- /dev/null
+++ b/jooq/src/test/java/com/baeldung/JOOLTest.java
@@ -0,0 +1,29 @@
+package com.baeldung;
+
+
+import org.jooq.lambda.Seq;
+import org.junit.Test;
+
+import java.util.Arrays;
+import java.util.List;
+
+import static junit.framework.Assert.assertTrue;
+import static junit.framework.TestCase.assertEquals;
+
+public class JOOLTest {
+ @Test
+ public void givenSeq_whenCheckContains_shouldReturnTrue() {
+ List concat = Seq.of(1, 2, 3).concat(Seq.of(4, 5, 6)).toList();
+
+ assertEquals(concat, Arrays.asList(1, 2, 3, 4, 5, 6));
+
+
+ assertTrue(Seq.of(1, 2, 3, 4).contains(2));
+
+
+ assertTrue(Seq.of(1, 2, 3, 4).containsAll(2, 3));
+
+
+ assertTrue(Seq.of(1, 2, 3, 4).containsAny(2, 5));
+ }
+}
diff --git a/pom.xml b/pom.xml
index ecb07e987b..42ded9de0d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -193,6 +193,7 @@
struts2
apache-velocity
+ jooq