maksaska commented on code in PR #12017:
URL: https://github.com/apache/ignite/pull/12017#discussion_r2106163851
##########
modules/dev-utils/pom.xml:
##########
@@ -52,6 +52,13 @@
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>ignite-grid-unsafe</artifactId>
+ <version>${revision}</version>
Review Comment:
Fixed
##########
modules/compatibility/src/test/java/org/apache/ignite/compatibility/clients/JavaThinCompatibilityTest.java:
##########
@@ -107,10 +108,10 @@ public class JavaThinCompatibilityTest extends
AbstractClientCompatibilityTest {
@Override protected void beforeTest() throws Exception {
super.beforeTest();
- int majorJavaVer = U.majorJavaVersion(U.jdkVersion());
+ int majorJavaVer =
CommonUtils.majorJavaVersion(CommonUtils.jdkVersion());
if (majorJavaVer > 11) {
- Assume.assumeTrue("Skipped on jdk " + U.jdkVersion(),
+ Assume.assumeTrue("Skipped on jdk " + CommonUtils.jdkVersion(),
Review Comment:
Fixed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]