Update modules

This commit is contained in:
Andrea Cavalli 2022-05-11 10:24:46 +02:00
parent 8019e28d31
commit cbda1d24b6
2 changed files with 17 additions and 4 deletions

20
pom.xml
View File

@ -241,14 +241,26 @@
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>com.outbrain.swinfra</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>ci-friendly-flatten-maven-plugin</artifactId> <artifactId>flatten-maven-plugin</artifactId>
<version>1.0.14</version> <version>1.1.0</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>oss</flattenMode>
</configuration>
<executions> <executions>
<execution> <execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals> <goals>
<goal>clean</goal> <goal>clean</goal>
<goal>flatten</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>

View File

@ -12,5 +12,6 @@ module dbengine.server {
requires org.jetbrains.annotations; requires org.jetbrains.annotations;
requires io.netty.incubator.codec.classes.quic; requires io.netty.incubator.codec.classes.quic;
requires io.netty.handler; requires io.netty.handler;
requires data.generator.runtime;
} }