Module fixes

This commit is contained in:
Andrea Cavalli 2023-04-20 11:30:10 +02:00
parent 9c4465e5a1
commit 4fd6e09b28
2 changed files with 13 additions and 3 deletions

14
pom.xml
View File

@ -64,7 +64,7 @@
</dependency>
<dependency>
<groupId>io.soabase.record-builder</groupId>
<artifactId>record-builder-processor</artifactId>
<artifactId>record-builder-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
@ -100,7 +100,7 @@
</dependency>
<dependency>
<groupId>io.soabase.record-builder</groupId>
<artifactId>record-builder-processor</artifactId>
<artifactId>record-builder-core</artifactId>
<version>36</version>
</dependency>
<dependency>
@ -136,6 +136,16 @@
<configuration>
<source>17</source>
<target>17</target>
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>io.soabase.record-builder</groupId>
<artifactId>record-builder-processor</artifactId>
<version>33</version>
</annotationProcessorPath>
</annotationProcessorPaths>
<annotationProcessors>
<annotationProcessor>io.soabase.recordbuilder.processor.RecordBuilderProcessor</annotationProcessor>
</annotationProcessors>
</configuration>
</plugin>
</plugins>

View File

@ -5,6 +5,6 @@ module filesponge {
requires org.jetbrains.annotations;
requires reactor.core;
requires org.reactivestreams;
requires data.generator.runtime;
requires it.cavallium.datagen;
exports org.warp.filesponge;
}