This is an automated email from the ASF dual-hosted git repository.

zstan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 3087d27635d IGNITE-28748 Fix ClassNotFoundException on test suite 
checks (#13214)
3087d27635d is described below

commit 3087d27635dde06a29477accf9aad288e7deb27d
Author: Dmitry Werner <[email protected]>
AuthorDate: Fri Jun 5 20:07:15 2026 +0500

    IGNITE-28748 Fix ClassNotFoundException on test suite checks (#13214)
---
 modules/extdata/pluggable/pom.xml                  |  9 +++++++++
 .../resources/config/java.util.logging.properties  | 22 ++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/modules/extdata/pluggable/pom.xml 
b/modules/extdata/pluggable/pom.xml
index fa5306f52a3..2c609f90c19 100644
--- a/modules/extdata/pluggable/pom.xml
+++ b/modules/extdata/pluggable/pom.xml
@@ -100,6 +100,15 @@
 
     <build>
         <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <systemPropertyVariables>
+                        
<java.util.logging.config.file>${project.build.testOutputDirectory}/config/java.util.logging.properties</java.util.logging.config.file>
+                    </systemPropertyVariables>
+                </configuration>
+            </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-jar-plugin</artifactId>
diff --git 
a/modules/extdata/pluggable/src/test/resources/config/java.util.logging.properties
 
b/modules/extdata/pluggable/src/test/resources/config/java.util.logging.properties
new file mode 100644
index 00000000000..c7a9b2ae4fc
--- /dev/null
+++ 
b/modules/extdata/pluggable/src/test/resources/config/java.util.logging.properties
@@ -0,0 +1,22 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+handlers=java.util.logging.ConsoleHandler
+.level=INFO
+
+java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter
+java.util.logging.ConsoleHandler.level=INFO

Reply via email to