Skip to content

Commit 1b4acc5

Browse files
committed
Fix record builder configuration.
1 parent 6821fb9 commit 1b4acc5

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

core/pom.xml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<dependency>
4242
<groupId>io.soabase.record-builder</groupId>
4343
<artifactId>record-builder-processor</artifactId>
44-
<version>48</version>
44+
<version>${record.builder.version}</version>
4545
<scope>provided</scope>
4646
</dependency>
4747
</dependencies>
@@ -62,6 +62,20 @@
6262
<sourcepath>src/main/java;target/generated-sources/annotations</sourcepath>
6363
</configuration>
6464
</plugin>
65+
<plugin>
66+
<groupId>org.apache.maven.plugins</groupId>
67+
<artifactId>maven-compiler-plugin</artifactId>
68+
<version>3.14.0</version>
69+
<configuration>
70+
<annotationProcessorPaths>
71+
<path>
72+
<groupId>io.soabase.record-builder</groupId>
73+
<artifactId>record-builder-processor</artifactId>
74+
<version>${record.builder.version}</version>
75+
</path>
76+
</annotationProcessorPaths>
77+
</configuration>
78+
</plugin>
6579
</plugins>
6680
</build>
6781
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@
8383
<eclipse.core.version>3.23.0</eclipse.core.version>
8484
<emfatic.version>1.1.0</emfatic.version>
8585
<mockito.version>5.19.0</mockito.version>
86+
<record.builder.version>48</record.builder.version>
8687
<!-- ensure that this variable is initialized, even if it is empty -->
8788
<argLine/>
8889

0 commit comments

Comments
 (0)