47 lines
1.5 KiB
XML
47 lines
1.5 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>dev.struchkov.haiti.filter</groupId>
|
||
|
<artifactId>haiti-filter-jooq</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>Haiti Filter JOOQ</name>
|
||
|
<description>JOOQ based filtering module</description>
|
||
|
<url>https://github.com/haiti-projects/haiti-filter-jooq</url>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>11</maven.compiler.source>
|
||
|
<maven.compiler.target>11</maven.compiler.target>
|
||
|
|
||
|
<jooq.version>3.15.5</jooq.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>dev.struchkov.haiti</groupId>
|
||
|
<artifactId>haiti-bom</artifactId>
|
||
|
<version>0.0.1-RELEASE</version>
|
||
|
<type>pom</type>
|
||
|
<scope>import</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>dev.struchkov.haiti</groupId>
|
||
|
<artifactId>haiti-filter</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jooq</groupId>
|
||
|
<artifactId>jooq</artifactId>
|
||
|
<version>${jooq.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|