CavalliumDBEngine/pom.xml

579 lines
19 KiB
XML
Raw Normal View History

2020-12-07 22:15:18 +01:00
<project xmlns="http://maven.apache.org/POM/4.0.0"
2021-02-20 21:34:12 +01:00
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>
2020-12-07 22:15:18 +01:00
2021-02-20 21:34:12 +01:00
<name>CavalliumDBEngine</name>
2020-12-07 22:15:18 +01:00
2021-02-20 21:34:12 +01:00
<groupId>it.cavallium</groupId>
<artifactId>dbengine</artifactId>
<version>3.0.${revision}</version>
2020-12-07 22:15:18 +01:00
2021-02-20 21:34:12 +01:00
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<revision>0-SNAPSHOT</revision>
2021-09-10 13:34:26 +02:00
<dbengine.ci>false</dbengine.ci>
2021-09-18 01:06:55 +02:00
<micrometer.version>1.7.4</micrometer.version>
2021-02-20 21:34:12 +01:00
</properties>
<repositories>
<repository>
<id>mchv-release</id>
<name>MCHV Release Apache Maven Packages</name>
<url>https://mvn.mchv.eu/repository/mchv</url>
</repository>
<repository>
<id>mchv-snapshot</id>
<name>MCHV Snapshot Apache Maven Packages</name>
<url>https://mvn.mchv.eu/repository/mchv-snapshot</url>
</repository>
2021-10-29 09:06:10 +02:00
<repository>
<id>lucene-repository</id>
<name>Lucene Maven</name>
<url>https://repository.apache.org/snapshots/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
2021-05-25 11:17:24 +02:00
<repository>
<id>mulesoft-public-snapshots</id>
<name>MuleSoft public snapshots</name>
<url>https://repository.mulesoft.org/nexus/content/repositories/public</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
2021-08-29 23:18:03 +02:00
<repository>
<id>netty5-snapshots</id>
<name>Netty 5 snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
2021-02-20 21:34:12 +01:00
</repositories>
2021-05-09 19:04:16 +02:00
<pluginRepositories>
<pluginRepository>
<id>mchv-release</id>
<name>MCHV Release Apache Maven Packages</name>
<url>https://mvn.mchv.eu/repository/mchv</url>
</pluginRepository>
<pluginRepository>
<id>mchv-snapshot</id>
<name>MCHV Snapshot Apache Maven Packages</name>
<url>https://mvn.mchv.eu/repository/mchv-snapshot</url>
</pluginRepository>
</pluginRepositories>
2021-02-20 21:34:12 +01:00
<distributionManagement>
<repository>
<id>mchv-release-distribution</id>
<name>MCHV Release Apache Maven Packages Distribution</name>
<url>https://mvn.mchv.eu/repository/mchv</url>
</repository>
<snapshotRepository>
<id>mchv-snapshot-distribution</id>
<name>MCHV Snapshot Apache Maven Packages Distribution</name>
<url>https://mvn.mchv.eu/repository/mchv-snapshot</url>
</snapshotRepository>
</distributionManagement>
<scm>
<connection>scm:git:https://git.ignuranza.net/andreacavalli/CavalliumDBEngine.git</connection>
<developerConnection>scm:git:https://git.ignuranza.net/andreacavalli/CavalliumDBEngine.git</developerConnection>
<tag>HEAD</tag>
</scm>
<dependencies>
2021-05-10 00:48:42 +02:00
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
2021-02-20 21:34:12 +01:00
</dependency>
<dependency>
<groupId>org.warp</groupId>
<artifactId>common-utils</artifactId>
</dependency>
<dependency>
2021-09-17 16:56:28 +02:00
<groupId>io.net5</groupId>
2021-02-20 21:34:12 +01:00
<artifactId>netty-buffer</artifactId>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
<dependency>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
2021-12-12 23:40:30 +01:00
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
2022-01-11 16:01:50 +01:00
<version>3.22.0</version>
2021-12-12 23:40:30 +01:00
<scope>test</scope>
</dependency>
2021-02-20 21:34:12 +01:00
<!-- This will get hamcrest-core automatically -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
2021-03-14 03:13:19 +01:00
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
2022-01-11 16:01:50 +01:00
<version>2.17.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.32</version>
2021-03-14 03:13:19 +01:00
</dependency>
2022-01-11 19:59:07 +01:00
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.17.1</version>
</dependency>
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
2021-10-17 13:13:05 +02:00
<version>3.4.4</version>
</dependency>
2021-02-20 21:34:12 +01:00
<dependency>
<groupId>org.rocksdb</groupId>
<artifactId>rocksdbjni</artifactId>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-join</artifactId>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
2021-05-25 01:12:24 +02:00
<artifactId>lucene-analysis-common</artifactId>
2021-02-20 21:34:12 +01:00
</dependency>
2021-05-28 16:04:59 +02:00
<dependency>
<groupId>org.apache.lucene</groupId>
2021-10-16 14:59:38 +02:00
<artifactId>lucene-analysis-icu</artifactId>
2021-05-28 16:04:59 +02:00
</dependency>
2021-02-20 21:34:12 +01:00
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-codecs</artifactId>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-backward-codecs</artifactId>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queries</artifactId>
2021-05-25 01:12:24 +02:00
</dependency>
2021-11-16 23:19:23 +01:00
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queryparser</artifactId>
</dependency>
2021-05-25 01:12:24 +02:00
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-misc</artifactId>
2021-02-20 21:34:12 +01:00
</dependency>
2021-11-19 19:03:31 +01:00
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-facet</artifactId>
</dependency>
2021-02-20 21:34:12 +01:00
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-tools</artifactId>
</dependency>
2021-03-14 03:13:19 +01:00
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
</dependency>
2021-02-20 21:34:12 +01:00
<dependency>
<groupId>org.novasearch</groupId>
<artifactId>lucene-relevance</artifactId>
2021-03-02 01:53:36 +01:00
</dependency>
2021-05-21 00:19:40 +02:00
<dependency>
<groupId>io.soabase.record-builder</groupId>
<artifactId>record-builder-core</artifactId>
<scope>provided</scope>
</dependency>
2021-06-08 02:54:05 +02:00
<dependency>
<groupId>it.cavallium</groupId>
<artifactId>data-generator-runtime</artifactId>
2022-01-11 16:52:03 +01:00
<exclusions>
<exclusion>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
</exclusion>
</exclusions>
2021-06-08 02:54:05 +02:00
</dependency>
2021-09-18 01:06:55 +02:00
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-core</artifactId>
2022-01-11 16:01:50 +01:00
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
2021-09-18 01:06:55 +02:00
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-jmx</artifactId>
<optional>true</optional>
2022-01-11 16:01:50 +01:00
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
2021-09-18 01:06:55 +02:00
</dependency>
<dependency>
<groupId>org.lmdbjava</groupId>
<artifactId>lmdbjava</artifactId>
<version>0.8.2</version>
</dependency>
2021-02-20 21:34:12 +01:00
</dependencies>
2021-06-08 02:54:05 +02:00
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
2022-01-11 16:52:03 +01:00
<version>31.0.1-jre</version>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>org.warp</groupId>
<artifactId>common-utils</artifactId>
2022-01-04 12:55:33 +01:00
<version>1.1.7</version>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
2021-09-17 16:56:28 +02:00
<groupId>io.net5</groupId>
2021-06-08 02:54:05 +02:00
<artifactId>netty-buffer</artifactId>
2021-08-29 23:18:03 +02:00
<version>5.0.0.Final-SNAPSHOT</version>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
2022-01-04 00:03:38 +01:00
<version>1.29</version>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil</artifactId>
2021-09-16 18:09:08 +02:00
<version>8.5.6</version>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.8.0-M1</version>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.8.0-M1</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.8.0-M1</version>
</dependency>
<!-- This will get hamcrest-core automatically -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<scope>test</scope>
</dependency>
2021-06-08 02:54:05 +02:00
<dependency>
<groupId>org.rocksdb</groupId>
<artifactId>rocksdbjni</artifactId>
2021-12-27 17:34:44 +01:00
<version>6.27.3</version>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
2021-12-11 13:20:28 +01:00
<version>9.0.0</version>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-join</artifactId>
2021-12-11 13:20:28 +01:00
<version>9.0.0</version>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analysis-common</artifactId>
2021-12-11 13:20:28 +01:00
<version>9.0.0</version>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
2021-10-16 14:59:38 +02:00
<artifactId>lucene-analysis-icu</artifactId>
2021-12-11 13:20:28 +01:00
<version>9.0.0</version>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-codecs</artifactId>
2021-12-11 13:20:28 +01:00
<version>9.0.0</version>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-backward-codecs</artifactId>
2021-12-11 13:20:28 +01:00
<version>9.0.0</version>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queries</artifactId>
2021-12-11 13:20:28 +01:00
<version>9.0.0</version>
2021-06-08 02:54:05 +02:00
</dependency>
2021-11-16 23:19:23 +01:00
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queryparser</artifactId>
2021-12-11 13:20:28 +01:00
<version>9.0.0</version>
2021-11-16 23:19:23 +01:00
</dependency>
2021-06-08 02:54:05 +02:00
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-misc</artifactId>
2021-12-11 13:20:28 +01:00
<version>9.0.0</version>
2021-06-08 02:54:05 +02:00
</dependency>
2021-11-19 19:03:31 +01:00
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-facet</artifactId>
2021-12-11 13:20:28 +01:00
<version>9.0.0</version>
2021-11-19 19:03:31 +01:00
</dependency>
2021-06-08 02:54:05 +02:00
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
2022-01-11 16:52:03 +01:00
<version>22.0.0</version>
<scope>compile</scope>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>3.4.13</version>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-tools</artifactId>
<version>3.4.13</version>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<version>3.4.13</version>
2021-10-27 22:37:23 +02:00
<scope>test</scope>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>org.novasearch</groupId>
<artifactId>lucene-relevance</artifactId>
<version>9.0.0.0.0-SNAPSHOT</version>
2022-01-11 16:52:03 +01:00
<exclusions>
<exclusion>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
</exclusion>
</exclusions>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>io.soabase.record-builder</groupId>
<artifactId>record-builder-core</artifactId>
2021-09-16 18:09:08 +02:00
<version>26</version>
2021-06-08 02:54:05 +02:00
</dependency>
<dependency>
<groupId>it.cavallium</groupId>
<artifactId>data-generator-runtime</artifactId>
2021-10-09 00:49:37 +02:00
<version>1.0.32</version>
2021-06-08 02:54:05 +02:00
</dependency>
2021-09-18 01:06:55 +02:00
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-core</artifactId>
<version>${micrometer.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-jmx</artifactId>
<version>${micrometer.version}</version>
<optional>true</optional>
</dependency>
2021-06-08 02:54:05 +02:00
</dependencies>
</dependencyManagement>
2021-02-20 21:34:12 +01:00
<build>
<testSourceDirectory>src/test/java</testSourceDirectory>
<resources>
<resource>
<directory>../src/main/libs</directory>
<excludes>
<exclude>**/*.jar</exclude>
</excludes>
</resource>
</resources>
<extensions>
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
<version>1.5.0.Final</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.2</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
2021-12-31 00:58:47 +01:00
<prependGroupId>true</prependGroupId>
<stripVersion>true</stripVersion>
2021-02-20 21:34:12 +01:00
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
2021-09-22 11:03:39 +02:00
<release>17</release>
2021-05-21 00:19:40 +02:00
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>io.soabase.record-builder</groupId>
<artifactId>record-builder-processor</artifactId>
<version>1.19</version>
</annotationProcessorPath>
</annotationProcessorPaths>
<annotationProcessors>
<annotationProcessor>io.soabase.recordbuilder.processor.RecordBuilderProcessor</annotationProcessor>
</annotationProcessors>
2021-12-14 20:23:22 +01:00
<compilerArgs>--enable-preview</compilerArgs>
2021-09-22 11:03:39 +02:00
<source>17</source>
<target>17</target>
2021-02-20 21:34:12 +01:00
</configuration>
</plugin>
2021-03-02 01:53:36 +01:00
<plugin>
<groupId>it.cavallium</groupId>
<artifactId>data-generator</artifactId>
2021-10-28 23:48:25 +02:00
<version>0.9.71</version>
2021-03-02 01:53:36 +01:00
<executions>
<execution>
<id>generate-lucene-query-sources</id>
<phase>generate-sources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<basePackageName>it.cavallium.dbengine.client.query</basePackageName>
<configPath>${basedir}/src/main/data-generator/lucene-query.yaml</configPath>
</configuration>
</execution>
</executions>
</plugin>
2021-09-10 01:20:05 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.8.0-M1</version>
</dependency>
</dependencies>
<configuration>
2021-12-12 02:17:36 +01:00
<argLine>--enable-preview --add-modules jdk.incubator.foreign -Dforeign.restricted=permit --add-opens=java.base/jdk.internal.misc=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.nio=ALL-UNNAMED --enable-native-access=ALL-UNNAMED</argLine>
2021-09-10 13:34:26 +02:00
<systemProperties>
<property>
<name>ci</name>
<value>${dbengine.ci}</value>
</property>
</systemProperties>
</configuration>
2021-09-10 01:20:05 +02:00
</plugin>
2022-01-11 16:01:50 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
<executions>
<execution>
<id>enforce</id>
<configuration>
<rules>
<dependencyConvergence/>
</rules>
</configuration>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>
2021-02-20 21:34:12 +01:00
</plugins>
</build>
2020-12-07 22:15:18 +01:00
</project>