Commit 5258d00
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
1 file changed
+5
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
208 | 208 | | |
209 | 209 | | |
210 | 210 | | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
211 | 216 | | |
212 | 217 | | |
213 | 218 | | |
| |||
0 commit comments