YCSB icon indicating copy to clipboard operation
YCSB copied to clipboard

Compilation error

Open TomerYakir opened this issue 2 years ago • 2 comments
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>

)

TomerYakir avatar Mar 19 '23 07:03 TomerYakir

<dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>7.5</version> <scope>test</scope> </dependency> This works for me.

lianghouxu avatar Apr 11 '23 14:04 lianghouxu

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.

qkrwjdan avatar Apr 17 '24 16:04 qkrwjdan