Skip to content

Commit

Permalink
Add missing dependency on jctools-core in microbench/pom.xml (#13325)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
eirbjo committed Apr 18, 2023
1 parent f67a556 commit 5258d00
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions microbench/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,11 @@
<classifier>${tcnative.classifier}</classifier>
<optional>false</optional>
</dependency>
<dependency>
<groupId>org.jctools</groupId>
<artifactId>jctools-core</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 5258d00

Please sign in to comment.