Skip to content

Commit 5258d00

Browse files
authored
Add missing dependency on jctools-core in microbench/pom.xml (#13325)
Motivation: #13220 seems to have introduced a build/compile failure because of a missing Maven dependency on `jctools-core`. Adding this dependency to `microbench/pom.xml` fixes the compile failure of the `RecyclerBenchmark` class. Modification: Added the following depencency to `microbench/pom.xml`: ```xml <dependency> <groupId>org.jctools</groupId> <artifactId>jctools-core</artifactId> <scope>compile</scope> </dependency> ``` Result: Build is successful.
1 parent f67a556 commit 5258d00

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

microbench/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,11 @@
208208
<classifier>${tcnative.classifier}</classifier>
209209
<optional>false</optional>
210210
</dependency>
211+
<dependency>
212+
<groupId>org.jctools</groupId>
213+
<artifactId>jctools-core</artifactId>
214+
<scope>compile</scope>
215+
</dependency>
211216
</dependencies>
212217

213218
<build>

0 commit comments

Comments
 (0)