Skip to content

Commit b360589

Browse files
committed
fix: add mapper processor to integration tests
1 parent 6245775 commit b360589

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

integration-tests/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,28 @@
231231
</dependencies>
232232
<build>
233233
<plugins>
234+
<plugin>
235+
<artifactId>maven-compiler-plugin</artifactId>
236+
<configuration>
237+
<annotationProcessorPaths>
238+
<path>
239+
<groupId>com.google.errorprone</groupId>
240+
<artifactId>error_prone_core</artifactId>
241+
<version>2.31.0</version>
242+
</path>
243+
<path>
244+
<groupId>com.scylladb</groupId>
245+
<artifactId>java-driver-mapper-processor</artifactId>
246+
<version>${project.version}</version>
247+
</path>
248+
<path>
249+
<groupId>com.scylladb</groupId>
250+
<artifactId>java-driver-mapper-runtime</artifactId>
251+
<version>${project.version}</version>
252+
</path>
253+
</annotationProcessorPaths>
254+
</configuration>
255+
</plugin>
234256
<plugin>
235257
<groupId>org.apache.maven.plugins</groupId>
236258
<artifactId>maven-failsafe-plugin</artifactId>

0 commit comments

Comments
 (0)