YCSB
YCSB copied to clipboard
Compilation error
trafficstars
I believe that e56b556b54a86400927af3783d5af398e55d9141 has broken compilation:
YCSB/ycsb-mongodb/core/src/test/java/com/yahoo/ycsb/TestByteIterator.java:[3,29] error: cannot access Test
(presumably this:
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.7.0</version>
<scope>test</scope>
</dependency>
)
<dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>7.5</version> <scope>test</scope> </dependency>
This works for me.
The following dependency works for me. I edited ./core/pom.xml
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.4.0</version>
<scope>test</scope>
</dependency>
os is Rocky 8.9.