Update modules

This commit is contained in:
Andrea Cavalli 2022-05-11 10:24:23 +02:00
parent fab06db239
commit bfc78f1465
2 changed files with 565 additions and 554 deletions

26
pom.xml
View File

@ -1,6 +1,4 @@
<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">
<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>
<name>CavalliumDBEngine</name>
@ -534,7 +532,7 @@
<id>enforce</id>
<configuration>
<rules>
<dependencyConvergence/>
<dependencyConvergence />
</rules>
</configuration>
<goals>
@ -544,14 +542,26 @@
</executions>
</plugin>
<plugin>
<groupId>com.outbrain.swinfra</groupId>
<artifactId>ci-friendly-flatten-maven-plugin</artifactId>
<version>1.0.14</version>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.1.0</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>oss</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
<goal>flatten</goal>
</goals>
</execution>
</executions>

View File

@ -49,6 +49,7 @@ module dbengine {
requires org.apache.lucene.analysis.icu;
requires io.netty.handler;
requires io.netty.incubator.codec.classes.quic;
requires io.netty.common;
requires org.apache.lucene.queryparser;
requires reactor.netty.incubator.quic;
requires okio;