You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by pp...@apache.org on 2022/08/18 09:35:40 UTC

[ignite-extensions] branch master updated: IGNITE-17512 Remove redundant duplication of log4j2-test.xml and tests.properties files (#172)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new ceb6093  IGNITE-17512 Remove redundant duplication of log4j2-test.xml and tests.properties files (#172)
ceb6093 is described below

commit ceb6093e5d6d9f3d745d0c0a12270764607abc82
Author: Pavel Pereslegin <xx...@gmail.com>
AuthorDate: Thu Aug 18 12:35:35 2022 +0300

    IGNITE-17512 Remove redundant duplication of log4j2-test.xml and tests.properties files (#172)
---
 .../modules/core/src/test/config/log4j2-test.xml   |  40 ------
 .../modules/core/src/test/config/tests.properties  |  16 ---
 .../modules/core/src/test/config/log4j2-test.xml   |  40 ------
 .../modules/core/src/test/config/tests.properties  |  16 ---
 .../modules/core/src/test/config/log4j2-test.xml   |  40 ------
 .../modules/core/src/test/config/tests.properties  |  16 ---
 .../modules/core/src/test/config/log4j2-test.xml   |  90 ------------
 .../modules/core/src/test/config/tests.properties  | 153 ---------------------
 .../modules/core/src/test/config/log4j2-test.xml   |  40 ------
 .../modules/core/src/test/config/tests.properties  |  16 ---
 .../modules/core/src/test/config/log4j2-test.xml   |  40 ------
 .../modules/core/src/test/config/tests.properties  |  16 ---
 .../modules/core/src/test/config/log4j2-test.xml   |  90 ------------
 .../modules/core/src/test/config/tests.properties  | 153 ---------------------
 .../modules/core/src/test/config/log4j2-test.xml   |  40 ------
 .../modules/core/src/test/config/tests.properties  |  16 ---
 .../modules/core/src/test/config/log4j2-test.xml   |  90 ------------
 .../modules/core/src/test/config/tests.properties  |  19 ---
 .../modules/core/src/test/config/log4j2-test.xml   |  90 ------------
 .../modules/core/src/test/config/tests.properties  | 153 ---------------------
 .../modules/core/src/test/config/log4j2-test.xml   |  90 ------------
 .../modules/core/src/test/config/tests.properties  | 153 ---------------------
 .../modules/core/src/test/config/log4j2-test.xml   |  90 ------------
 .../modules/core/src/test/config/tests.properties  | 153 ---------------------
 .../modules/core/src/test/config/log4j2-test.xml   |  90 ------------
 .../modules/core/src/test/config/tests.properties  | 153 ---------------------
 .../modules/core/src/test/config/log4j2-test.xml   |  90 ------------
 .../modules/core/src/test/config/tests.properties  | 153 ---------------------
 .../modules/core/src/test/config/log4j2-test.xml   |  40 ------
 .../modules/core/src/test/config/tests.properties  |  16 ---
 .../modules/core/src/test/config/log4j2-test.xml   |  90 ------------
 .../modules/core/src/test/config/tests.properties  |  22 ---
 .../modules/core/src/test/config/log4j2-test.xml   |  90 ------------
 .../modules/core/src/test/config/tests.properties  | 153 ---------------------
 .../modules/core/src/test/config/log4j2-test.xml   |  40 ------
 .../modules/core/src/test/config/tests.properties  |   0
 .../modules/core/src/test/config/log4j2-test.xml   |  90 ------------
 .../modules/core/src/test/config/tests.properties  | 153 ---------------------
 .../modules/core/src/test/config/log4j2-test.xml   |  90 ------------
 .../modules/core/src/test/config/tests.properties  | 153 ---------------------
 .../modules/core/src/test/config/log4j2-test.xml   |  90 ------------
 .../modules/core/src/test/config/tests.properties  |  22 ---
 42 files changed, 3195 deletions(-)

diff --git a/modules/aop-ext/modules/core/src/test/config/log4j2-test.xml b/modules/aop-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 0bf9cf5..0000000
--- a/modules/aop-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-    </Appenders>
-
-    <Loggers>
-        <Logger name="org" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/aop-ext/modules/core/src/test/config/tests.properties b/modules/aop-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 86094c8..0000000
--- a/modules/aop-ext/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-#
-# 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.
-#
diff --git a/modules/aws-ext/modules/core/src/test/config/log4j2-test.xml b/modules/aws-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 0bf9cf5..0000000
--- a/modules/aws-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-    </Appenders>
-
-    <Loggers>
-        <Logger name="org" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/aws-ext/modules/core/src/test/config/tests.properties b/modules/aws-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 86094c8..0000000
--- a/modules/aws-ext/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-#
-# 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.
-#
diff --git a/modules/azure-ext/modules/core/src/test/config/log4j2-test.xml b/modules/azure-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 0bf9cf5..0000000
--- a/modules/azure-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-    </Appenders>
-
-    <Loggers>
-        <Logger name="org" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/azure-ext/modules/core/src/test/config/tests.properties b/modules/azure-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 86094c8..0000000
--- a/modules/azure-ext/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-#
-# 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.
-#
diff --git a/modules/camel-ext/modules/core/src/test/config/log4j2-test.xml b/modules/camel-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 9a47edc..0000000
--- a/modules/camel-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-
-        <RollingFile name="FILE"
-                     append="true"
-                     fileName="ignite/work/log/ignite.log"
-                     filePattern="ignite/work/log/ignite.log.%i">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <Policies>
-                <SizeBasedTriggeringPolicy size="10 MB"/>
-            </Policies>
-            <DefaultRolloverStrategy max="10"/>
-        </RollingFile>
-    </Appenders>
-
-    <Loggers>
-        <!--
-            Uncomment to enable Ignite query execution debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.query" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable Exchange, Rebalance and Partitions workflow debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.preloader" level="DEBUG"/>
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition counters.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.PartitionUpdateCounterDebugWrapper" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable transactions debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.cache.msg.tx.prepare" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.finish" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.recovery" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition eviction.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology.PartitionsEvictManager" level="DEBUG"/>
-        -->
-        <Logger name="org" level="INFO"/>
-        <Logger name="org.eclipse.jetty" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="FILE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/camel-ext/modules/core/src/test/config/tests.properties b/modules/camel-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 18b3606..0000000
--- a/modules/camel-ext/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,153 +0,0 @@
-#
-# 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.
-#
-
-# Local address to bind to.
-local.ip=127.0.0.1
-
-# TCP communication port
-comm.tcp.port=30010
-
-# JBoss JNDI
-# JBoss context factory for JNDI connection establishing.
-jboss.jndi.context.factory=org.jnp.interfaces.NamingContextFactory
-# JBoss specific parameter for JNDI connection establishing.
-jboss.jndi.pkg.prefixes=org.jboss.naming:org.jnp.interfaces
-# URL of JBoss server for the 1st node.
-jboss.jndi.node1.provider.url=jnp://localhost:1199
-# URL of JBoss server for the 2nd node.
-jboss.jndi.node2.provider.url=jnp://localhost:1299
-# JBoss Discovery test max wait time.
-jboss.disco.test.wait=180000
-
-# Deployment configuration paths.
-# You will either need to override deploy.uri.dir or supply CLASSES_URI as system property.
-#
-# Path to keystore with private and public keys.
-deploy.uri.secure.keystore=@{IGNITE_HOME}/modules/tests/config/securedeploy/keystore
-# Temporary dir where deployment unit stored before deploy.
-deploy.uri.tmpdir=${java.io.tmpdir}/gg
-# Deployment dir for file scanner test with different types of GAR's.
-deploy.uri.file2.path=${java.io.tmpdir}/gg/verification/
-# URI string.
-deploy.uri.file2=file://freq=200@localhost/${java.io.tmpdir}/gg/verification/
-# File scanner URI for local file deployment.
-deploy.uri.file=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/file/
-# FTP scanner URI for FTP deployment.
-deploy.uri.ftp=ftp://ftptest:iddqd@94.72.60.102:21/test/deployment
-# Classes scanner URI for classes deployment. Must be overridden for every user.
-deploy.uri.cls=${CLASSES_URI}
-# Http scanner URI for HTTP deployment.
-deploy.uri.http=http://fake.uri
-# Http scanner URI for secure SSL HTTPs deployment.
-deploy.uri.https=https://fake.uri
-# Directory with descriptors to construct GAR files.
-deploy.gar.descriptor.dir=modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/META-INF
-
-# Directory with a number of descriptors for the Ant gar task.
-ant.gar.descriptor.dir=modules/extdata/p2p/META-INF
-# Temporary directory for the Ant task resulting GAR file.
-ant.gar.tmpdir=${java.io.tmpdir}/gg
-# The same as p2p.uri.cls but without protocol
-ant.gar.srcdir=@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# Paths to use in URI deployment SPI tests
-urideployment.jar.uri=modules/extdata/uri/target/deploy/uri.jar
-urideployment.path.tmp=modules/extdata/uri/target/deploy_tmp/
-
-# GAR paths to use in URI deployment SPI tests
-ant.urideployment.gar.uri=file://freq=5000@localhost/EXTDATA/uri/target/deploy
-ant.urideployment.gar.file=modules/extdata/uri/target/deploy/uri.gar
-ant.urideployment.gar.libs-file=modules/extdata/uri/target/deploy2/uri-libs.gar
-ant.urideployment.gar.classes-file=modules/extdata/uri/target/deploy2/uri-classes.gar
-ant.urideployment.gar.path=modules/extdata/uri/target/deploy/
-
-# Classpath directory for GridP2PUserVersionChangeSelfTest
-ant.userversion.class.dir=@{IGNITE_HOME}/modules/tests/java/
-
-# Multicast discovery self test.
-discovery.mbeanserver.selftest.baseport=50000
-
-# TCP communication self test.
-comm.mbeanserver.selftest.baseport=50100
-
-# Kernel tests.
-grid.comm.selftest.sender.timeout=1000
-grid.comm.selftest.timeout=10000
-
-#P2P tests
-#Overwrite this property. It should point to P2P module compilation directory.
-p2p.uri.cls=file://localhost/@{IGNITE_HOME}/modules/extdata/p2p/target/classes/
-p2p.uri.cls.second=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# AOP tests.
-# Connector port for RMI.
-connector.rmi.port=7657
-# Connector port for XFire Web Service.
-connector.ws.port=9090
-
-# Load test duration in minutes.
-load.test.duration=500
-load.test.threadnum=50
-load.test.nodenum=5
-
-# Loaders tests
-loader.self.test.config=modules/core/src/test/config/loaders/grid-cfg.xml
-loader.self.multipletest.config=modules/core/src/test/config/loaders/grid-cfg-2-grids.xml
-loader.self.test.jboss.config=modules/core/src/test/config/loaders/grid-cfg.xml
-
-# WebSphere jmx properties
-websphere.jmx.connector.host=localhost
-websphere.jmx.connector.port=8880
-websphere.jmx.connector.security=false
-websphere.jmx.username=
-websphere.jmx.pwd=
-
-# GlassFish jmx properties for GlassFish Loader
-glassfish.jmx.rmi.connector.port=8686
-glassfish.jmx.username=admin
-glassfish.jmx.password=adminadmin
-
-# Tomcat jmx properties for Servlet Loader
-tomcat.jmx.rmi.connector.port=1097
-
-# Marshaller for tests
-#marshaller.class=org.apache.ignite.marshaller.jdk.GridJdkMarshaller
-
-# EC2 configuration for tests
-#amazon.access.key=
-#amazon.secret.key=
-
-# SSH config.
-ssh.username=uname
-ssh.password=passwd
-
-# SSL tests keystore.
-ssl.keystore.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/server.jks
-ssl.keystore.password=123456
-
-# node01 signed with trust-one, node02 and node03 by trust-two, node02old is expired
-# trust-both contains both CAs
-ssl.keystore.node01.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node01.jks
-ssl.keystore.node02.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02.jks
-ssl.keystore.node03.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node03.jks
-ssl.keystore.trustone.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-one.jks
-ssl.keystore.trusttwo.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-two.jks
-ssl.keystore.trustboth.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-both.jks
-ssl.keystore.node02old.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02old.jks
-
-# Hadoop home directory.
-hadoop.home=@{HADOOP_HOME}
diff --git a/modules/cdc-ext/modules/core/src/test/config/log4j2-test.xml b/modules/cdc-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 0bf9cf5..0000000
--- a/modules/cdc-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-    </Appenders>
-
-    <Loggers>
-        <Logger name="org" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/cdc-ext/modules/core/src/test/config/tests.properties b/modules/cdc-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 228ed16..0000000
--- a/modules/cdc-ext/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-#
-# 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.
-#
\ No newline at end of file
diff --git a/modules/cloud-ext/modules/core/src/test/config/log4j2-test.xml b/modules/cloud-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 0bf9cf5..0000000
--- a/modules/cloud-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-    </Appenders>
-
-    <Loggers>
-        <Logger name="org" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/cloud-ext/modules/core/src/test/config/tests.properties b/modules/cloud-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 228ed16..0000000
--- a/modules/cloud-ext/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-#
-# 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.
-#
\ No newline at end of file
diff --git a/modules/flume-ext/modules/core/src/test/config/log4j2-test.xml b/modules/flume-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 9a47edc..0000000
--- a/modules/flume-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-
-        <RollingFile name="FILE"
-                     append="true"
-                     fileName="ignite/work/log/ignite.log"
-                     filePattern="ignite/work/log/ignite.log.%i">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <Policies>
-                <SizeBasedTriggeringPolicy size="10 MB"/>
-            </Policies>
-            <DefaultRolloverStrategy max="10"/>
-        </RollingFile>
-    </Appenders>
-
-    <Loggers>
-        <!--
-            Uncomment to enable Ignite query execution debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.query" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable Exchange, Rebalance and Partitions workflow debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.preloader" level="DEBUG"/>
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition counters.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.PartitionUpdateCounterDebugWrapper" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable transactions debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.cache.msg.tx.prepare" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.finish" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.recovery" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition eviction.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology.PartitionsEvictManager" level="DEBUG"/>
-        -->
-        <Logger name="org" level="INFO"/>
-        <Logger name="org.eclipse.jetty" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="FILE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/flume-ext/modules/core/src/test/config/tests.properties b/modules/flume-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 18b3606..0000000
--- a/modules/flume-ext/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,153 +0,0 @@
-#
-# 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.
-#
-
-# Local address to bind to.
-local.ip=127.0.0.1
-
-# TCP communication port
-comm.tcp.port=30010
-
-# JBoss JNDI
-# JBoss context factory for JNDI connection establishing.
-jboss.jndi.context.factory=org.jnp.interfaces.NamingContextFactory
-# JBoss specific parameter for JNDI connection establishing.
-jboss.jndi.pkg.prefixes=org.jboss.naming:org.jnp.interfaces
-# URL of JBoss server for the 1st node.
-jboss.jndi.node1.provider.url=jnp://localhost:1199
-# URL of JBoss server for the 2nd node.
-jboss.jndi.node2.provider.url=jnp://localhost:1299
-# JBoss Discovery test max wait time.
-jboss.disco.test.wait=180000
-
-# Deployment configuration paths.
-# You will either need to override deploy.uri.dir or supply CLASSES_URI as system property.
-#
-# Path to keystore with private and public keys.
-deploy.uri.secure.keystore=@{IGNITE_HOME}/modules/tests/config/securedeploy/keystore
-# Temporary dir where deployment unit stored before deploy.
-deploy.uri.tmpdir=${java.io.tmpdir}/gg
-# Deployment dir for file scanner test with different types of GAR's.
-deploy.uri.file2.path=${java.io.tmpdir}/gg/verification/
-# URI string.
-deploy.uri.file2=file://freq=200@localhost/${java.io.tmpdir}/gg/verification/
-# File scanner URI for local file deployment.
-deploy.uri.file=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/file/
-# FTP scanner URI for FTP deployment.
-deploy.uri.ftp=ftp://ftptest:iddqd@94.72.60.102:21/test/deployment
-# Classes scanner URI for classes deployment. Must be overridden for every user.
-deploy.uri.cls=${CLASSES_URI}
-# Http scanner URI for HTTP deployment.
-deploy.uri.http=http://fake.uri
-# Http scanner URI for secure SSL HTTPs deployment.
-deploy.uri.https=https://fake.uri
-# Directory with descriptors to construct GAR files.
-deploy.gar.descriptor.dir=modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/META-INF
-
-# Directory with a number of descriptors for the Ant gar task.
-ant.gar.descriptor.dir=modules/extdata/p2p/META-INF
-# Temporary directory for the Ant task resulting GAR file.
-ant.gar.tmpdir=${java.io.tmpdir}/gg
-# The same as p2p.uri.cls but without protocol
-ant.gar.srcdir=@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# Paths to use in URI deployment SPI tests
-urideployment.jar.uri=modules/extdata/uri/target/deploy/uri.jar
-urideployment.path.tmp=modules/extdata/uri/target/deploy_tmp/
-
-# GAR paths to use in URI deployment SPI tests
-ant.urideployment.gar.uri=file://freq=5000@localhost/EXTDATA/uri/target/deploy
-ant.urideployment.gar.file=modules/extdata/uri/target/deploy/uri.gar
-ant.urideployment.gar.libs-file=modules/extdata/uri/target/deploy2/uri-libs.gar
-ant.urideployment.gar.classes-file=modules/extdata/uri/target/deploy2/uri-classes.gar
-ant.urideployment.gar.path=modules/extdata/uri/target/deploy/
-
-# Classpath directory for GridP2PUserVersionChangeSelfTest
-ant.userversion.class.dir=@{IGNITE_HOME}/modules/tests/java/
-
-# Multicast discovery self test.
-discovery.mbeanserver.selftest.baseport=50000
-
-# TCP communication self test.
-comm.mbeanserver.selftest.baseport=50100
-
-# Kernel tests.
-grid.comm.selftest.sender.timeout=1000
-grid.comm.selftest.timeout=10000
-
-#P2P tests
-#Overwrite this property. It should point to P2P module compilation directory.
-p2p.uri.cls=file://localhost/@{IGNITE_HOME}/modules/extdata/p2p/target/classes/
-p2p.uri.cls.second=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# AOP tests.
-# Connector port for RMI.
-connector.rmi.port=7657
-# Connector port for XFire Web Service.
-connector.ws.port=9090
-
-# Load test duration in minutes.
-load.test.duration=500
-load.test.threadnum=50
-load.test.nodenum=5
-
-# Loaders tests
-loader.self.test.config=modules/core/src/test/config/loaders/grid-cfg.xml
-loader.self.multipletest.config=modules/core/src/test/config/loaders/grid-cfg-2-grids.xml
-loader.self.test.jboss.config=modules/core/src/test/config/loaders/grid-cfg.xml
-
-# WebSphere jmx properties
-websphere.jmx.connector.host=localhost
-websphere.jmx.connector.port=8880
-websphere.jmx.connector.security=false
-websphere.jmx.username=
-websphere.jmx.pwd=
-
-# GlassFish jmx properties for GlassFish Loader
-glassfish.jmx.rmi.connector.port=8686
-glassfish.jmx.username=admin
-glassfish.jmx.password=adminadmin
-
-# Tomcat jmx properties for Servlet Loader
-tomcat.jmx.rmi.connector.port=1097
-
-# Marshaller for tests
-#marshaller.class=org.apache.ignite.marshaller.jdk.GridJdkMarshaller
-
-# EC2 configuration for tests
-#amazon.access.key=
-#amazon.secret.key=
-
-# SSH config.
-ssh.username=uname
-ssh.password=passwd
-
-# SSL tests keystore.
-ssl.keystore.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/server.jks
-ssl.keystore.password=123456
-
-# node01 signed with trust-one, node02 and node03 by trust-two, node02old is expired
-# trust-both contains both CAs
-ssl.keystore.node01.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node01.jks
-ssl.keystore.node02.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02.jks
-ssl.keystore.node03.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node03.jks
-ssl.keystore.trustone.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-one.jks
-ssl.keystore.trusttwo.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-two.jks
-ssl.keystore.trustboth.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-both.jks
-ssl.keystore.node02old.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02old.jks
-
-# Hadoop home directory.
-hadoop.home=@{HADOOP_HOME}
diff --git a/modules/gce-ext/modules/core/src/test/config/log4j2-test.xml b/modules/gce-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 0bf9cf5..0000000
--- a/modules/gce-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-    </Appenders>
-
-    <Loggers>
-        <Logger name="org" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/gce-ext/modules/core/src/test/config/tests.properties b/modules/gce-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 86094c8..0000000
--- a/modules/gce-ext/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-#
-# 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.
-#
diff --git a/modules/geospatial-ext/geospatial/modules/core/src/test/config/log4j2-test.xml b/modules/geospatial-ext/geospatial/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 9a47edc..0000000
--- a/modules/geospatial-ext/geospatial/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-
-        <RollingFile name="FILE"
-                     append="true"
-                     fileName="ignite/work/log/ignite.log"
-                     filePattern="ignite/work/log/ignite.log.%i">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <Policies>
-                <SizeBasedTriggeringPolicy size="10 MB"/>
-            </Policies>
-            <DefaultRolloverStrategy max="10"/>
-        </RollingFile>
-    </Appenders>
-
-    <Loggers>
-        <!--
-            Uncomment to enable Ignite query execution debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.query" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable Exchange, Rebalance and Partitions workflow debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.preloader" level="DEBUG"/>
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition counters.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.PartitionUpdateCounterDebugWrapper" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable transactions debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.cache.msg.tx.prepare" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.finish" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.recovery" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition eviction.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology.PartitionsEvictManager" level="DEBUG"/>
-        -->
-        <Logger name="org" level="INFO"/>
-        <Logger name="org.eclipse.jetty" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="FILE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/geospatial-ext/geospatial/modules/core/src/test/config/tests.properties b/modules/geospatial-ext/geospatial/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 7bdcbed..0000000
--- a/modules/geospatial-ext/geospatial/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,19 +0,0 @@
-#
-# 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.
-#
-
-# Local address to bind to.
-local.ip=127.0.0.1
diff --git a/modules/hibernate-ext/hibernate/modules/core/src/test/config/log4j2-test.xml b/modules/hibernate-ext/hibernate/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 9a47edc..0000000
--- a/modules/hibernate-ext/hibernate/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-
-        <RollingFile name="FILE"
-                     append="true"
-                     fileName="ignite/work/log/ignite.log"
-                     filePattern="ignite/work/log/ignite.log.%i">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <Policies>
-                <SizeBasedTriggeringPolicy size="10 MB"/>
-            </Policies>
-            <DefaultRolloverStrategy max="10"/>
-        </RollingFile>
-    </Appenders>
-
-    <Loggers>
-        <!--
-            Uncomment to enable Ignite query execution debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.query" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable Exchange, Rebalance and Partitions workflow debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.preloader" level="DEBUG"/>
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition counters.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.PartitionUpdateCounterDebugWrapper" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable transactions debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.cache.msg.tx.prepare" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.finish" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.recovery" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition eviction.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology.PartitionsEvictManager" level="DEBUG"/>
-        -->
-        <Logger name="org" level="INFO"/>
-        <Logger name="org.eclipse.jetty" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="FILE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/hibernate-ext/hibernate/modules/core/src/test/config/tests.properties b/modules/hibernate-ext/hibernate/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 18b3606..0000000
--- a/modules/hibernate-ext/hibernate/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,153 +0,0 @@
-#
-# 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.
-#
-
-# Local address to bind to.
-local.ip=127.0.0.1
-
-# TCP communication port
-comm.tcp.port=30010
-
-# JBoss JNDI
-# JBoss context factory for JNDI connection establishing.
-jboss.jndi.context.factory=org.jnp.interfaces.NamingContextFactory
-# JBoss specific parameter for JNDI connection establishing.
-jboss.jndi.pkg.prefixes=org.jboss.naming:org.jnp.interfaces
-# URL of JBoss server for the 1st node.
-jboss.jndi.node1.provider.url=jnp://localhost:1199
-# URL of JBoss server for the 2nd node.
-jboss.jndi.node2.provider.url=jnp://localhost:1299
-# JBoss Discovery test max wait time.
-jboss.disco.test.wait=180000
-
-# Deployment configuration paths.
-# You will either need to override deploy.uri.dir or supply CLASSES_URI as system property.
-#
-# Path to keystore with private and public keys.
-deploy.uri.secure.keystore=@{IGNITE_HOME}/modules/tests/config/securedeploy/keystore
-# Temporary dir where deployment unit stored before deploy.
-deploy.uri.tmpdir=${java.io.tmpdir}/gg
-# Deployment dir for file scanner test with different types of GAR's.
-deploy.uri.file2.path=${java.io.tmpdir}/gg/verification/
-# URI string.
-deploy.uri.file2=file://freq=200@localhost/${java.io.tmpdir}/gg/verification/
-# File scanner URI for local file deployment.
-deploy.uri.file=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/file/
-# FTP scanner URI for FTP deployment.
-deploy.uri.ftp=ftp://ftptest:iddqd@94.72.60.102:21/test/deployment
-# Classes scanner URI for classes deployment. Must be overridden for every user.
-deploy.uri.cls=${CLASSES_URI}
-# Http scanner URI for HTTP deployment.
-deploy.uri.http=http://fake.uri
-# Http scanner URI for secure SSL HTTPs deployment.
-deploy.uri.https=https://fake.uri
-# Directory with descriptors to construct GAR files.
-deploy.gar.descriptor.dir=modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/META-INF
-
-# Directory with a number of descriptors for the Ant gar task.
-ant.gar.descriptor.dir=modules/extdata/p2p/META-INF
-# Temporary directory for the Ant task resulting GAR file.
-ant.gar.tmpdir=${java.io.tmpdir}/gg
-# The same as p2p.uri.cls but without protocol
-ant.gar.srcdir=@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# Paths to use in URI deployment SPI tests
-urideployment.jar.uri=modules/extdata/uri/target/deploy/uri.jar
-urideployment.path.tmp=modules/extdata/uri/target/deploy_tmp/
-
-# GAR paths to use in URI deployment SPI tests
-ant.urideployment.gar.uri=file://freq=5000@localhost/EXTDATA/uri/target/deploy
-ant.urideployment.gar.file=modules/extdata/uri/target/deploy/uri.gar
-ant.urideployment.gar.libs-file=modules/extdata/uri/target/deploy2/uri-libs.gar
-ant.urideployment.gar.classes-file=modules/extdata/uri/target/deploy2/uri-classes.gar
-ant.urideployment.gar.path=modules/extdata/uri/target/deploy/
-
-# Classpath directory for GridP2PUserVersionChangeSelfTest
-ant.userversion.class.dir=@{IGNITE_HOME}/modules/tests/java/
-
-# Multicast discovery self test.
-discovery.mbeanserver.selftest.baseport=50000
-
-# TCP communication self test.
-comm.mbeanserver.selftest.baseport=50100
-
-# Kernel tests.
-grid.comm.selftest.sender.timeout=1000
-grid.comm.selftest.timeout=10000
-
-#P2P tests
-#Overwrite this property. It should point to P2P module compilation directory.
-p2p.uri.cls=file://localhost/@{IGNITE_HOME}/modules/extdata/p2p/target/classes/
-p2p.uri.cls.second=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# AOP tests.
-# Connector port for RMI.
-connector.rmi.port=7657
-# Connector port for XFire Web Service.
-connector.ws.port=9090
-
-# Load test duration in minutes.
-load.test.duration=500
-load.test.threadnum=50
-load.test.nodenum=5
-
-# Loaders tests
-loader.self.test.config=modules/core/src/test/config/loaders/grid-cfg.xml
-loader.self.multipletest.config=modules/core/src/test/config/loaders/grid-cfg-2-grids.xml
-loader.self.test.jboss.config=modules/core/src/test/config/loaders/grid-cfg.xml
-
-# WebSphere jmx properties
-websphere.jmx.connector.host=localhost
-websphere.jmx.connector.port=8880
-websphere.jmx.connector.security=false
-websphere.jmx.username=
-websphere.jmx.pwd=
-
-# GlassFish jmx properties for GlassFish Loader
-glassfish.jmx.rmi.connector.port=8686
-glassfish.jmx.username=admin
-glassfish.jmx.password=adminadmin
-
-# Tomcat jmx properties for Servlet Loader
-tomcat.jmx.rmi.connector.port=1097
-
-# Marshaller for tests
-#marshaller.class=org.apache.ignite.marshaller.jdk.GridJdkMarshaller
-
-# EC2 configuration for tests
-#amazon.access.key=
-#amazon.secret.key=
-
-# SSH config.
-ssh.username=uname
-ssh.password=passwd
-
-# SSL tests keystore.
-ssl.keystore.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/server.jks
-ssl.keystore.password=123456
-
-# node01 signed with trust-one, node02 and node03 by trust-two, node02old is expired
-# trust-both contains both CAs
-ssl.keystore.node01.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node01.jks
-ssl.keystore.node02.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02.jks
-ssl.keystore.node03.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node03.jks
-ssl.keystore.trustone.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-one.jks
-ssl.keystore.trusttwo.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-two.jks
-ssl.keystore.trustboth.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-both.jks
-ssl.keystore.node02old.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02old.jks
-
-# Hadoop home directory.
-hadoop.home=@{HADOOP_HOME}
diff --git a/modules/jms11-ext/modules/core/src/test/config/log4j2-test.xml b/modules/jms11-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 9a47edc..0000000
--- a/modules/jms11-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-
-        <RollingFile name="FILE"
-                     append="true"
-                     fileName="ignite/work/log/ignite.log"
-                     filePattern="ignite/work/log/ignite.log.%i">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <Policies>
-                <SizeBasedTriggeringPolicy size="10 MB"/>
-            </Policies>
-            <DefaultRolloverStrategy max="10"/>
-        </RollingFile>
-    </Appenders>
-
-    <Loggers>
-        <!--
-            Uncomment to enable Ignite query execution debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.query" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable Exchange, Rebalance and Partitions workflow debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.preloader" level="DEBUG"/>
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition counters.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.PartitionUpdateCounterDebugWrapper" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable transactions debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.cache.msg.tx.prepare" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.finish" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.recovery" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition eviction.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology.PartitionsEvictManager" level="DEBUG"/>
-        -->
-        <Logger name="org" level="INFO"/>
-        <Logger name="org.eclipse.jetty" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="FILE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/jms11-ext/modules/core/src/test/config/tests.properties b/modules/jms11-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 18b3606..0000000
--- a/modules/jms11-ext/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,153 +0,0 @@
-#
-# 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.
-#
-
-# Local address to bind to.
-local.ip=127.0.0.1
-
-# TCP communication port
-comm.tcp.port=30010
-
-# JBoss JNDI
-# JBoss context factory for JNDI connection establishing.
-jboss.jndi.context.factory=org.jnp.interfaces.NamingContextFactory
-# JBoss specific parameter for JNDI connection establishing.
-jboss.jndi.pkg.prefixes=org.jboss.naming:org.jnp.interfaces
-# URL of JBoss server for the 1st node.
-jboss.jndi.node1.provider.url=jnp://localhost:1199
-# URL of JBoss server for the 2nd node.
-jboss.jndi.node2.provider.url=jnp://localhost:1299
-# JBoss Discovery test max wait time.
-jboss.disco.test.wait=180000
-
-# Deployment configuration paths.
-# You will either need to override deploy.uri.dir or supply CLASSES_URI as system property.
-#
-# Path to keystore with private and public keys.
-deploy.uri.secure.keystore=@{IGNITE_HOME}/modules/tests/config/securedeploy/keystore
-# Temporary dir where deployment unit stored before deploy.
-deploy.uri.tmpdir=${java.io.tmpdir}/gg
-# Deployment dir for file scanner test with different types of GAR's.
-deploy.uri.file2.path=${java.io.tmpdir}/gg/verification/
-# URI string.
-deploy.uri.file2=file://freq=200@localhost/${java.io.tmpdir}/gg/verification/
-# File scanner URI for local file deployment.
-deploy.uri.file=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/file/
-# FTP scanner URI for FTP deployment.
-deploy.uri.ftp=ftp://ftptest:iddqd@94.72.60.102:21/test/deployment
-# Classes scanner URI for classes deployment. Must be overridden for every user.
-deploy.uri.cls=${CLASSES_URI}
-# Http scanner URI for HTTP deployment.
-deploy.uri.http=http://fake.uri
-# Http scanner URI for secure SSL HTTPs deployment.
-deploy.uri.https=https://fake.uri
-# Directory with descriptors to construct GAR files.
-deploy.gar.descriptor.dir=modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/META-INF
-
-# Directory with a number of descriptors for the Ant gar task.
-ant.gar.descriptor.dir=modules/extdata/p2p/META-INF
-# Temporary directory for the Ant task resulting GAR file.
-ant.gar.tmpdir=${java.io.tmpdir}/gg
-# The same as p2p.uri.cls but without protocol
-ant.gar.srcdir=@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# Paths to use in URI deployment SPI tests
-urideployment.jar.uri=modules/extdata/uri/target/deploy/uri.jar
-urideployment.path.tmp=modules/extdata/uri/target/deploy_tmp/
-
-# GAR paths to use in URI deployment SPI tests
-ant.urideployment.gar.uri=file://freq=5000@localhost/EXTDATA/uri/target/deploy
-ant.urideployment.gar.file=modules/extdata/uri/target/deploy/uri.gar
-ant.urideployment.gar.libs-file=modules/extdata/uri/target/deploy2/uri-libs.gar
-ant.urideployment.gar.classes-file=modules/extdata/uri/target/deploy2/uri-classes.gar
-ant.urideployment.gar.path=modules/extdata/uri/target/deploy/
-
-# Classpath directory for GridP2PUserVersionChangeSelfTest
-ant.userversion.class.dir=@{IGNITE_HOME}/modules/tests/java/
-
-# Multicast discovery self test.
-discovery.mbeanserver.selftest.baseport=50000
-
-# TCP communication self test.
-comm.mbeanserver.selftest.baseport=50100
-
-# Kernel tests.
-grid.comm.selftest.sender.timeout=1000
-grid.comm.selftest.timeout=10000
-
-#P2P tests
-#Overwrite this property. It should point to P2P module compilation directory.
-p2p.uri.cls=file://localhost/@{IGNITE_HOME}/modules/extdata/p2p/target/classes/
-p2p.uri.cls.second=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# AOP tests.
-# Connector port for RMI.
-connector.rmi.port=7657
-# Connector port for XFire Web Service.
-connector.ws.port=9090
-
-# Load test duration in minutes.
-load.test.duration=500
-load.test.threadnum=50
-load.test.nodenum=5
-
-# Loaders tests
-loader.self.test.config=modules/core/src/test/config/loaders/grid-cfg.xml
-loader.self.multipletest.config=modules/core/src/test/config/loaders/grid-cfg-2-grids.xml
-loader.self.test.jboss.config=modules/core/src/test/config/loaders/grid-cfg.xml
-
-# WebSphere jmx properties
-websphere.jmx.connector.host=localhost
-websphere.jmx.connector.port=8880
-websphere.jmx.connector.security=false
-websphere.jmx.username=
-websphere.jmx.pwd=
-
-# GlassFish jmx properties for GlassFish Loader
-glassfish.jmx.rmi.connector.port=8686
-glassfish.jmx.username=admin
-glassfish.jmx.password=adminadmin
-
-# Tomcat jmx properties for Servlet Loader
-tomcat.jmx.rmi.connector.port=1097
-
-# Marshaller for tests
-#marshaller.class=org.apache.ignite.marshaller.jdk.GridJdkMarshaller
-
-# EC2 configuration for tests
-#amazon.access.key=
-#amazon.secret.key=
-
-# SSH config.
-ssh.username=uname
-ssh.password=passwd
-
-# SSL tests keystore.
-ssl.keystore.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/server.jks
-ssl.keystore.password=123456
-
-# node01 signed with trust-one, node02 and node03 by trust-two, node02old is expired
-# trust-both contains both CAs
-ssl.keystore.node01.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node01.jks
-ssl.keystore.node02.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02.jks
-ssl.keystore.node03.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node03.jks
-ssl.keystore.trustone.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-one.jks
-ssl.keystore.trusttwo.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-two.jks
-ssl.keystore.trustboth.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-both.jks
-ssl.keystore.node02old.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02old.jks
-
-# Hadoop home directory.
-hadoop.home=@{HADOOP_HOME}
diff --git a/modules/kafka-ext/modules/core/src/test/config/log4j2-test.xml b/modules/kafka-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 9a47edc..0000000
--- a/modules/kafka-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-
-        <RollingFile name="FILE"
-                     append="true"
-                     fileName="ignite/work/log/ignite.log"
-                     filePattern="ignite/work/log/ignite.log.%i">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <Policies>
-                <SizeBasedTriggeringPolicy size="10 MB"/>
-            </Policies>
-            <DefaultRolloverStrategy max="10"/>
-        </RollingFile>
-    </Appenders>
-
-    <Loggers>
-        <!--
-            Uncomment to enable Ignite query execution debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.query" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable Exchange, Rebalance and Partitions workflow debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.preloader" level="DEBUG"/>
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition counters.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.PartitionUpdateCounterDebugWrapper" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable transactions debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.cache.msg.tx.prepare" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.finish" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.recovery" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition eviction.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology.PartitionsEvictManager" level="DEBUG"/>
-        -->
-        <Logger name="org" level="INFO"/>
-        <Logger name="org.eclipse.jetty" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="FILE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/kafka-ext/modules/core/src/test/config/tests.properties b/modules/kafka-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 18b3606..0000000
--- a/modules/kafka-ext/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,153 +0,0 @@
-#
-# 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.
-#
-
-# Local address to bind to.
-local.ip=127.0.0.1
-
-# TCP communication port
-comm.tcp.port=30010
-
-# JBoss JNDI
-# JBoss context factory for JNDI connection establishing.
-jboss.jndi.context.factory=org.jnp.interfaces.NamingContextFactory
-# JBoss specific parameter for JNDI connection establishing.
-jboss.jndi.pkg.prefixes=org.jboss.naming:org.jnp.interfaces
-# URL of JBoss server for the 1st node.
-jboss.jndi.node1.provider.url=jnp://localhost:1199
-# URL of JBoss server for the 2nd node.
-jboss.jndi.node2.provider.url=jnp://localhost:1299
-# JBoss Discovery test max wait time.
-jboss.disco.test.wait=180000
-
-# Deployment configuration paths.
-# You will either need to override deploy.uri.dir or supply CLASSES_URI as system property.
-#
-# Path to keystore with private and public keys.
-deploy.uri.secure.keystore=@{IGNITE_HOME}/modules/tests/config/securedeploy/keystore
-# Temporary dir where deployment unit stored before deploy.
-deploy.uri.tmpdir=${java.io.tmpdir}/gg
-# Deployment dir for file scanner test with different types of GAR's.
-deploy.uri.file2.path=${java.io.tmpdir}/gg/verification/
-# URI string.
-deploy.uri.file2=file://freq=200@localhost/${java.io.tmpdir}/gg/verification/
-# File scanner URI for local file deployment.
-deploy.uri.file=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/file/
-# FTP scanner URI for FTP deployment.
-deploy.uri.ftp=ftp://ftptest:iddqd@94.72.60.102:21/test/deployment
-# Classes scanner URI for classes deployment. Must be overridden for every user.
-deploy.uri.cls=${CLASSES_URI}
-# Http scanner URI for HTTP deployment.
-deploy.uri.http=http://fake.uri
-# Http scanner URI for secure SSL HTTPs deployment.
-deploy.uri.https=https://fake.uri
-# Directory with descriptors to construct GAR files.
-deploy.gar.descriptor.dir=modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/META-INF
-
-# Directory with a number of descriptors for the Ant gar task.
-ant.gar.descriptor.dir=modules/extdata/p2p/META-INF
-# Temporary directory for the Ant task resulting GAR file.
-ant.gar.tmpdir=${java.io.tmpdir}/gg
-# The same as p2p.uri.cls but without protocol
-ant.gar.srcdir=@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# Paths to use in URI deployment SPI tests
-urideployment.jar.uri=modules/extdata/uri/target/deploy/uri.jar
-urideployment.path.tmp=modules/extdata/uri/target/deploy_tmp/
-
-# GAR paths to use in URI deployment SPI tests
-ant.urideployment.gar.uri=file://freq=5000@localhost/EXTDATA/uri/target/deploy
-ant.urideployment.gar.file=modules/extdata/uri/target/deploy/uri.gar
-ant.urideployment.gar.libs-file=modules/extdata/uri/target/deploy2/uri-libs.gar
-ant.urideployment.gar.classes-file=modules/extdata/uri/target/deploy2/uri-classes.gar
-ant.urideployment.gar.path=modules/extdata/uri/target/deploy/
-
-# Classpath directory for GridP2PUserVersionChangeSelfTest
-ant.userversion.class.dir=@{IGNITE_HOME}/modules/tests/java/
-
-# Multicast discovery self test.
-discovery.mbeanserver.selftest.baseport=50000
-
-# TCP communication self test.
-comm.mbeanserver.selftest.baseport=50100
-
-# Kernel tests.
-grid.comm.selftest.sender.timeout=1000
-grid.comm.selftest.timeout=10000
-
-#P2P tests
-#Overwrite this property. It should point to P2P module compilation directory.
-p2p.uri.cls=file://localhost/@{IGNITE_HOME}/modules/extdata/p2p/target/classes/
-p2p.uri.cls.second=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# AOP tests.
-# Connector port for RMI.
-connector.rmi.port=7657
-# Connector port for XFire Web Service.
-connector.ws.port=9090
-
-# Load test duration in minutes.
-load.test.duration=500
-load.test.threadnum=50
-load.test.nodenum=5
-
-# Loaders tests
-loader.self.test.config=modules/core/src/test/config/loaders/grid-cfg.xml
-loader.self.multipletest.config=modules/core/src/test/config/loaders/grid-cfg-2-grids.xml
-loader.self.test.jboss.config=modules/core/src/test/config/loaders/grid-cfg.xml
-
-# WebSphere jmx properties
-websphere.jmx.connector.host=localhost
-websphere.jmx.connector.port=8880
-websphere.jmx.connector.security=false
-websphere.jmx.username=
-websphere.jmx.pwd=
-
-# GlassFish jmx properties for GlassFish Loader
-glassfish.jmx.rmi.connector.port=8686
-glassfish.jmx.username=admin
-glassfish.jmx.password=adminadmin
-
-# Tomcat jmx properties for Servlet Loader
-tomcat.jmx.rmi.connector.port=1097
-
-# Marshaller for tests
-#marshaller.class=org.apache.ignite.marshaller.jdk.GridJdkMarshaller
-
-# EC2 configuration for tests
-#amazon.access.key=
-#amazon.secret.key=
-
-# SSH config.
-ssh.username=uname
-ssh.password=passwd
-
-# SSL tests keystore.
-ssl.keystore.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/server.jks
-ssl.keystore.password=123456
-
-# node01 signed with trust-one, node02 and node03 by trust-two, node02old is expired
-# trust-both contains both CAs
-ssl.keystore.node01.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node01.jks
-ssl.keystore.node02.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02.jks
-ssl.keystore.node03.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node03.jks
-ssl.keystore.trustone.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-one.jks
-ssl.keystore.trusttwo.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-two.jks
-ssl.keystore.trustboth.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-both.jks
-ssl.keystore.node02old.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02old.jks
-
-# Hadoop home directory.
-hadoop.home=@{HADOOP_HOME}
diff --git a/modules/mqtt-ext/modules/core/src/test/config/log4j2-test.xml b/modules/mqtt-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 9a47edc..0000000
--- a/modules/mqtt-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-
-        <RollingFile name="FILE"
-                     append="true"
-                     fileName="ignite/work/log/ignite.log"
-                     filePattern="ignite/work/log/ignite.log.%i">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <Policies>
-                <SizeBasedTriggeringPolicy size="10 MB"/>
-            </Policies>
-            <DefaultRolloverStrategy max="10"/>
-        </RollingFile>
-    </Appenders>
-
-    <Loggers>
-        <!--
-            Uncomment to enable Ignite query execution debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.query" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable Exchange, Rebalance and Partitions workflow debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.preloader" level="DEBUG"/>
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition counters.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.PartitionUpdateCounterDebugWrapper" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable transactions debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.cache.msg.tx.prepare" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.finish" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.recovery" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition eviction.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology.PartitionsEvictManager" level="DEBUG"/>
-        -->
-        <Logger name="org" level="INFO"/>
-        <Logger name="org.eclipse.jetty" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="FILE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/mqtt-ext/modules/core/src/test/config/tests.properties b/modules/mqtt-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 18b3606..0000000
--- a/modules/mqtt-ext/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,153 +0,0 @@
-#
-# 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.
-#
-
-# Local address to bind to.
-local.ip=127.0.0.1
-
-# TCP communication port
-comm.tcp.port=30010
-
-# JBoss JNDI
-# JBoss context factory for JNDI connection establishing.
-jboss.jndi.context.factory=org.jnp.interfaces.NamingContextFactory
-# JBoss specific parameter for JNDI connection establishing.
-jboss.jndi.pkg.prefixes=org.jboss.naming:org.jnp.interfaces
-# URL of JBoss server for the 1st node.
-jboss.jndi.node1.provider.url=jnp://localhost:1199
-# URL of JBoss server for the 2nd node.
-jboss.jndi.node2.provider.url=jnp://localhost:1299
-# JBoss Discovery test max wait time.
-jboss.disco.test.wait=180000
-
-# Deployment configuration paths.
-# You will either need to override deploy.uri.dir or supply CLASSES_URI as system property.
-#
-# Path to keystore with private and public keys.
-deploy.uri.secure.keystore=@{IGNITE_HOME}/modules/tests/config/securedeploy/keystore
-# Temporary dir where deployment unit stored before deploy.
-deploy.uri.tmpdir=${java.io.tmpdir}/gg
-# Deployment dir for file scanner test with different types of GAR's.
-deploy.uri.file2.path=${java.io.tmpdir}/gg/verification/
-# URI string.
-deploy.uri.file2=file://freq=200@localhost/${java.io.tmpdir}/gg/verification/
-# File scanner URI for local file deployment.
-deploy.uri.file=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/file/
-# FTP scanner URI for FTP deployment.
-deploy.uri.ftp=ftp://ftptest:iddqd@94.72.60.102:21/test/deployment
-# Classes scanner URI for classes deployment. Must be overridden for every user.
-deploy.uri.cls=${CLASSES_URI}
-# Http scanner URI for HTTP deployment.
-deploy.uri.http=http://fake.uri
-# Http scanner URI for secure SSL HTTPs deployment.
-deploy.uri.https=https://fake.uri
-# Directory with descriptors to construct GAR files.
-deploy.gar.descriptor.dir=modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/META-INF
-
-# Directory with a number of descriptors for the Ant gar task.
-ant.gar.descriptor.dir=modules/extdata/p2p/META-INF
-# Temporary directory for the Ant task resulting GAR file.
-ant.gar.tmpdir=${java.io.tmpdir}/gg
-# The same as p2p.uri.cls but without protocol
-ant.gar.srcdir=@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# Paths to use in URI deployment SPI tests
-urideployment.jar.uri=modules/extdata/uri/target/deploy/uri.jar
-urideployment.path.tmp=modules/extdata/uri/target/deploy_tmp/
-
-# GAR paths to use in URI deployment SPI tests
-ant.urideployment.gar.uri=file://freq=5000@localhost/EXTDATA/uri/target/deploy
-ant.urideployment.gar.file=modules/extdata/uri/target/deploy/uri.gar
-ant.urideployment.gar.libs-file=modules/extdata/uri/target/deploy2/uri-libs.gar
-ant.urideployment.gar.classes-file=modules/extdata/uri/target/deploy2/uri-classes.gar
-ant.urideployment.gar.path=modules/extdata/uri/target/deploy/
-
-# Classpath directory for GridP2PUserVersionChangeSelfTest
-ant.userversion.class.dir=@{IGNITE_HOME}/modules/tests/java/
-
-# Multicast discovery self test.
-discovery.mbeanserver.selftest.baseport=50000
-
-# TCP communication self test.
-comm.mbeanserver.selftest.baseport=50100
-
-# Kernel tests.
-grid.comm.selftest.sender.timeout=1000
-grid.comm.selftest.timeout=10000
-
-#P2P tests
-#Overwrite this property. It should point to P2P module compilation directory.
-p2p.uri.cls=file://localhost/@{IGNITE_HOME}/modules/extdata/p2p/target/classes/
-p2p.uri.cls.second=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# AOP tests.
-# Connector port for RMI.
-connector.rmi.port=7657
-# Connector port for XFire Web Service.
-connector.ws.port=9090
-
-# Load test duration in minutes.
-load.test.duration=500
-load.test.threadnum=50
-load.test.nodenum=5
-
-# Loaders tests
-loader.self.test.config=modules/core/src/test/config/loaders/grid-cfg.xml
-loader.self.multipletest.config=modules/core/src/test/config/loaders/grid-cfg-2-grids.xml
-loader.self.test.jboss.config=modules/core/src/test/config/loaders/grid-cfg.xml
-
-# WebSphere jmx properties
-websphere.jmx.connector.host=localhost
-websphere.jmx.connector.port=8880
-websphere.jmx.connector.security=false
-websphere.jmx.username=
-websphere.jmx.pwd=
-
-# GlassFish jmx properties for GlassFish Loader
-glassfish.jmx.rmi.connector.port=8686
-glassfish.jmx.username=admin
-glassfish.jmx.password=adminadmin
-
-# Tomcat jmx properties for Servlet Loader
-tomcat.jmx.rmi.connector.port=1097
-
-# Marshaller for tests
-#marshaller.class=org.apache.ignite.marshaller.jdk.GridJdkMarshaller
-
-# EC2 configuration for tests
-#amazon.access.key=
-#amazon.secret.key=
-
-# SSH config.
-ssh.username=uname
-ssh.password=passwd
-
-# SSL tests keystore.
-ssl.keystore.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/server.jks
-ssl.keystore.password=123456
-
-# node01 signed with trust-one, node02 and node03 by trust-two, node02old is expired
-# trust-both contains both CAs
-ssl.keystore.node01.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node01.jks
-ssl.keystore.node02.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02.jks
-ssl.keystore.node03.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node03.jks
-ssl.keystore.trustone.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-one.jks
-ssl.keystore.trusttwo.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-two.jks
-ssl.keystore.trustboth.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-both.jks
-ssl.keystore.node02old.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02old.jks
-
-# Hadoop home directory.
-hadoop.home=@{HADOOP_HOME}
diff --git a/modules/rocketmq-ext/modules/core/src/test/config/log4j2-test.xml b/modules/rocketmq-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 9a47edc..0000000
--- a/modules/rocketmq-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-
-        <RollingFile name="FILE"
-                     append="true"
-                     fileName="ignite/work/log/ignite.log"
-                     filePattern="ignite/work/log/ignite.log.%i">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <Policies>
-                <SizeBasedTriggeringPolicy size="10 MB"/>
-            </Policies>
-            <DefaultRolloverStrategy max="10"/>
-        </RollingFile>
-    </Appenders>
-
-    <Loggers>
-        <!--
-            Uncomment to enable Ignite query execution debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.query" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable Exchange, Rebalance and Partitions workflow debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.preloader" level="DEBUG"/>
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition counters.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.PartitionUpdateCounterDebugWrapper" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable transactions debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.cache.msg.tx.prepare" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.finish" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.recovery" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition eviction.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology.PartitionsEvictManager" level="DEBUG"/>
-        -->
-        <Logger name="org" level="INFO"/>
-        <Logger name="org.eclipse.jetty" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="FILE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/rocketmq-ext/modules/core/src/test/config/tests.properties b/modules/rocketmq-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 18b3606..0000000
--- a/modules/rocketmq-ext/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,153 +0,0 @@
-#
-# 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.
-#
-
-# Local address to bind to.
-local.ip=127.0.0.1
-
-# TCP communication port
-comm.tcp.port=30010
-
-# JBoss JNDI
-# JBoss context factory for JNDI connection establishing.
-jboss.jndi.context.factory=org.jnp.interfaces.NamingContextFactory
-# JBoss specific parameter for JNDI connection establishing.
-jboss.jndi.pkg.prefixes=org.jboss.naming:org.jnp.interfaces
-# URL of JBoss server for the 1st node.
-jboss.jndi.node1.provider.url=jnp://localhost:1199
-# URL of JBoss server for the 2nd node.
-jboss.jndi.node2.provider.url=jnp://localhost:1299
-# JBoss Discovery test max wait time.
-jboss.disco.test.wait=180000
-
-# Deployment configuration paths.
-# You will either need to override deploy.uri.dir or supply CLASSES_URI as system property.
-#
-# Path to keystore with private and public keys.
-deploy.uri.secure.keystore=@{IGNITE_HOME}/modules/tests/config/securedeploy/keystore
-# Temporary dir where deployment unit stored before deploy.
-deploy.uri.tmpdir=${java.io.tmpdir}/gg
-# Deployment dir for file scanner test with different types of GAR's.
-deploy.uri.file2.path=${java.io.tmpdir}/gg/verification/
-# URI string.
-deploy.uri.file2=file://freq=200@localhost/${java.io.tmpdir}/gg/verification/
-# File scanner URI for local file deployment.
-deploy.uri.file=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/file/
-# FTP scanner URI for FTP deployment.
-deploy.uri.ftp=ftp://ftptest:iddqd@94.72.60.102:21/test/deployment
-# Classes scanner URI for classes deployment. Must be overridden for every user.
-deploy.uri.cls=${CLASSES_URI}
-# Http scanner URI for HTTP deployment.
-deploy.uri.http=http://fake.uri
-# Http scanner URI for secure SSL HTTPs deployment.
-deploy.uri.https=https://fake.uri
-# Directory with descriptors to construct GAR files.
-deploy.gar.descriptor.dir=modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/META-INF
-
-# Directory with a number of descriptors for the Ant gar task.
-ant.gar.descriptor.dir=modules/extdata/p2p/META-INF
-# Temporary directory for the Ant task resulting GAR file.
-ant.gar.tmpdir=${java.io.tmpdir}/gg
-# The same as p2p.uri.cls but without protocol
-ant.gar.srcdir=@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# Paths to use in URI deployment SPI tests
-urideployment.jar.uri=modules/extdata/uri/target/deploy/uri.jar
-urideployment.path.tmp=modules/extdata/uri/target/deploy_tmp/
-
-# GAR paths to use in URI deployment SPI tests
-ant.urideployment.gar.uri=file://freq=5000@localhost/EXTDATA/uri/target/deploy
-ant.urideployment.gar.file=modules/extdata/uri/target/deploy/uri.gar
-ant.urideployment.gar.libs-file=modules/extdata/uri/target/deploy2/uri-libs.gar
-ant.urideployment.gar.classes-file=modules/extdata/uri/target/deploy2/uri-classes.gar
-ant.urideployment.gar.path=modules/extdata/uri/target/deploy/
-
-# Classpath directory for GridP2PUserVersionChangeSelfTest
-ant.userversion.class.dir=@{IGNITE_HOME}/modules/tests/java/
-
-# Multicast discovery self test.
-discovery.mbeanserver.selftest.baseport=50000
-
-# TCP communication self test.
-comm.mbeanserver.selftest.baseport=50100
-
-# Kernel tests.
-grid.comm.selftest.sender.timeout=1000
-grid.comm.selftest.timeout=10000
-
-#P2P tests
-#Overwrite this property. It should point to P2P module compilation directory.
-p2p.uri.cls=file://localhost/@{IGNITE_HOME}/modules/extdata/p2p/target/classes/
-p2p.uri.cls.second=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# AOP tests.
-# Connector port for RMI.
-connector.rmi.port=7657
-# Connector port for XFire Web Service.
-connector.ws.port=9090
-
-# Load test duration in minutes.
-load.test.duration=500
-load.test.threadnum=50
-load.test.nodenum=5
-
-# Loaders tests
-loader.self.test.config=modules/core/src/test/config/loaders/grid-cfg.xml
-loader.self.multipletest.config=modules/core/src/test/config/loaders/grid-cfg-2-grids.xml
-loader.self.test.jboss.config=modules/core/src/test/config/loaders/grid-cfg.xml
-
-# WebSphere jmx properties
-websphere.jmx.connector.host=localhost
-websphere.jmx.connector.port=8880
-websphere.jmx.connector.security=false
-websphere.jmx.username=
-websphere.jmx.pwd=
-
-# GlassFish jmx properties for GlassFish Loader
-glassfish.jmx.rmi.connector.port=8686
-glassfish.jmx.username=admin
-glassfish.jmx.password=adminadmin
-
-# Tomcat jmx properties for Servlet Loader
-tomcat.jmx.rmi.connector.port=1097
-
-# Marshaller for tests
-#marshaller.class=org.apache.ignite.marshaller.jdk.GridJdkMarshaller
-
-# EC2 configuration for tests
-#amazon.access.key=
-#amazon.secret.key=
-
-# SSH config.
-ssh.username=uname
-ssh.password=passwd
-
-# SSL tests keystore.
-ssl.keystore.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/server.jks
-ssl.keystore.password=123456
-
-# node01 signed with trust-one, node02 and node03 by trust-two, node02old is expired
-# trust-both contains both CAs
-ssl.keystore.node01.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node01.jks
-ssl.keystore.node02.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02.jks
-ssl.keystore.node03.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node03.jks
-ssl.keystore.trustone.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-one.jks
-ssl.keystore.trusttwo.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-two.jks
-ssl.keystore.trustboth.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-both.jks
-ssl.keystore.node02old.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02old.jks
-
-# Hadoop home directory.
-hadoop.home=@{HADOOP_HOME}
diff --git a/modules/spark-ext/spark/modules/core/src/test/config/log4j2-test.xml b/modules/spark-ext/spark/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 0bf9cf5..0000000
--- a/modules/spark-ext/spark/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-    </Appenders>
-
-    <Loggers>
-        <Logger name="org" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/spark-ext/spark/modules/core/src/test/config/tests.properties b/modules/spark-ext/spark/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 86094c8..0000000
--- a/modules/spark-ext/spark/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-#
-# 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.
-#
diff --git a/modules/spring-data-ext/spring-data/modules/core/src/test/config/log4j2-test.xml b/modules/spring-data-ext/spring-data/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 9a47edc..0000000
--- a/modules/spring-data-ext/spring-data/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-
-        <RollingFile name="FILE"
-                     append="true"
-                     fileName="ignite/work/log/ignite.log"
-                     filePattern="ignite/work/log/ignite.log.%i">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <Policies>
-                <SizeBasedTriggeringPolicy size="10 MB"/>
-            </Policies>
-            <DefaultRolloverStrategy max="10"/>
-        </RollingFile>
-    </Appenders>
-
-    <Loggers>
-        <!--
-            Uncomment to enable Ignite query execution debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.query" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable Exchange, Rebalance and Partitions workflow debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.preloader" level="DEBUG"/>
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition counters.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.PartitionUpdateCounterDebugWrapper" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable transactions debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.cache.msg.tx.prepare" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.finish" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.recovery" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition eviction.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology.PartitionsEvictManager" level="DEBUG"/>
-        -->
-        <Logger name="org" level="INFO"/>
-        <Logger name="org.eclipse.jetty" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="FILE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/spring-data-ext/spring-data/modules/core/src/test/config/tests.properties b/modules/spring-data-ext/spring-data/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 0faf5b8..0000000
--- a/modules/spring-data-ext/spring-data/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,22 +0,0 @@
-#
-# 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.
-#
-
-# Local address to bind to.
-local.ip=127.0.0.1
-
-# TCP communication port
-comm.tcp.port=30010
diff --git a/modules/storm-ext/modules/core/src/test/config/log4j2-test.xml b/modules/storm-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 9a47edc..0000000
--- a/modules/storm-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-
-        <RollingFile name="FILE"
-                     append="true"
-                     fileName="ignite/work/log/ignite.log"
-                     filePattern="ignite/work/log/ignite.log.%i">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <Policies>
-                <SizeBasedTriggeringPolicy size="10 MB"/>
-            </Policies>
-            <DefaultRolloverStrategy max="10"/>
-        </RollingFile>
-    </Appenders>
-
-    <Loggers>
-        <!--
-            Uncomment to enable Ignite query execution debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.query" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable Exchange, Rebalance and Partitions workflow debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.preloader" level="DEBUG"/>
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition counters.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.PartitionUpdateCounterDebugWrapper" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable transactions debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.cache.msg.tx.prepare" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.finish" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.recovery" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition eviction.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology.PartitionsEvictManager" level="DEBUG"/>
-        -->
-        <Logger name="org" level="INFO"/>
-        <Logger name="org.eclipse.jetty" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="FILE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/storm-ext/modules/core/src/test/config/tests.properties b/modules/storm-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 18b3606..0000000
--- a/modules/storm-ext/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,153 +0,0 @@
-#
-# 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.
-#
-
-# Local address to bind to.
-local.ip=127.0.0.1
-
-# TCP communication port
-comm.tcp.port=30010
-
-# JBoss JNDI
-# JBoss context factory for JNDI connection establishing.
-jboss.jndi.context.factory=org.jnp.interfaces.NamingContextFactory
-# JBoss specific parameter for JNDI connection establishing.
-jboss.jndi.pkg.prefixes=org.jboss.naming:org.jnp.interfaces
-# URL of JBoss server for the 1st node.
-jboss.jndi.node1.provider.url=jnp://localhost:1199
-# URL of JBoss server for the 2nd node.
-jboss.jndi.node2.provider.url=jnp://localhost:1299
-# JBoss Discovery test max wait time.
-jboss.disco.test.wait=180000
-
-# Deployment configuration paths.
-# You will either need to override deploy.uri.dir or supply CLASSES_URI as system property.
-#
-# Path to keystore with private and public keys.
-deploy.uri.secure.keystore=@{IGNITE_HOME}/modules/tests/config/securedeploy/keystore
-# Temporary dir where deployment unit stored before deploy.
-deploy.uri.tmpdir=${java.io.tmpdir}/gg
-# Deployment dir for file scanner test with different types of GAR's.
-deploy.uri.file2.path=${java.io.tmpdir}/gg/verification/
-# URI string.
-deploy.uri.file2=file://freq=200@localhost/${java.io.tmpdir}/gg/verification/
-# File scanner URI for local file deployment.
-deploy.uri.file=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/file/
-# FTP scanner URI for FTP deployment.
-deploy.uri.ftp=ftp://ftptest:iddqd@94.72.60.102:21/test/deployment
-# Classes scanner URI for classes deployment. Must be overridden for every user.
-deploy.uri.cls=${CLASSES_URI}
-# Http scanner URI for HTTP deployment.
-deploy.uri.http=http://fake.uri
-# Http scanner URI for secure SSL HTTPs deployment.
-deploy.uri.https=https://fake.uri
-# Directory with descriptors to construct GAR files.
-deploy.gar.descriptor.dir=modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/META-INF
-
-# Directory with a number of descriptors for the Ant gar task.
-ant.gar.descriptor.dir=modules/extdata/p2p/META-INF
-# Temporary directory for the Ant task resulting GAR file.
-ant.gar.tmpdir=${java.io.tmpdir}/gg
-# The same as p2p.uri.cls but without protocol
-ant.gar.srcdir=@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# Paths to use in URI deployment SPI tests
-urideployment.jar.uri=modules/extdata/uri/target/deploy/uri.jar
-urideployment.path.tmp=modules/extdata/uri/target/deploy_tmp/
-
-# GAR paths to use in URI deployment SPI tests
-ant.urideployment.gar.uri=file://freq=5000@localhost/EXTDATA/uri/target/deploy
-ant.urideployment.gar.file=modules/extdata/uri/target/deploy/uri.gar
-ant.urideployment.gar.libs-file=modules/extdata/uri/target/deploy2/uri-libs.gar
-ant.urideployment.gar.classes-file=modules/extdata/uri/target/deploy2/uri-classes.gar
-ant.urideployment.gar.path=modules/extdata/uri/target/deploy/
-
-# Classpath directory for GridP2PUserVersionChangeSelfTest
-ant.userversion.class.dir=@{IGNITE_HOME}/modules/tests/java/
-
-# Multicast discovery self test.
-discovery.mbeanserver.selftest.baseport=50000
-
-# TCP communication self test.
-comm.mbeanserver.selftest.baseport=50100
-
-# Kernel tests.
-grid.comm.selftest.sender.timeout=1000
-grid.comm.selftest.timeout=10000
-
-#P2P tests
-#Overwrite this property. It should point to P2P module compilation directory.
-p2p.uri.cls=file://localhost/@{IGNITE_HOME}/modules/extdata/p2p/target/classes/
-p2p.uri.cls.second=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# AOP tests.
-# Connector port for RMI.
-connector.rmi.port=7657
-# Connector port for XFire Web Service.
-connector.ws.port=9090
-
-# Load test duration in minutes.
-load.test.duration=500
-load.test.threadnum=50
-load.test.nodenum=5
-
-# Loaders tests
-loader.self.test.config=modules/core/src/test/config/loaders/grid-cfg.xml
-loader.self.multipletest.config=modules/core/src/test/config/loaders/grid-cfg-2-grids.xml
-loader.self.test.jboss.config=modules/core/src/test/config/loaders/grid-cfg.xml
-
-# WebSphere jmx properties
-websphere.jmx.connector.host=localhost
-websphere.jmx.connector.port=8880
-websphere.jmx.connector.security=false
-websphere.jmx.username=
-websphere.jmx.pwd=
-
-# GlassFish jmx properties for GlassFish Loader
-glassfish.jmx.rmi.connector.port=8686
-glassfish.jmx.username=admin
-glassfish.jmx.password=adminadmin
-
-# Tomcat jmx properties for Servlet Loader
-tomcat.jmx.rmi.connector.port=1097
-
-# Marshaller for tests
-#marshaller.class=org.apache.ignite.marshaller.jdk.GridJdkMarshaller
-
-# EC2 configuration for tests
-#amazon.access.key=
-#amazon.secret.key=
-
-# SSH config.
-ssh.username=uname
-ssh.password=passwd
-
-# SSL tests keystore.
-ssl.keystore.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/server.jks
-ssl.keystore.password=123456
-
-# node01 signed with trust-one, node02 and node03 by trust-two, node02old is expired
-# trust-both contains both CAs
-ssl.keystore.node01.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node01.jks
-ssl.keystore.node02.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02.jks
-ssl.keystore.node03.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node03.jks
-ssl.keystore.trustone.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-one.jks
-ssl.keystore.trusttwo.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-two.jks
-ssl.keystore.trustboth.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-both.jks
-ssl.keystore.node02old.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02old.jks
-
-# Hadoop home directory.
-hadoop.home=@{HADOOP_HOME}
diff --git a/modules/topology-validator-ext/modules/core/src/test/config/log4j2-test.xml b/modules/topology-validator-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 0bf9cf5..0000000
--- a/modules/topology-validator-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-    </Appenders>
-
-    <Loggers>
-        <Logger name="org" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/topology-validator-ext/modules/core/src/test/config/tests.properties b/modules/topology-validator-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index e69de29..0000000
diff --git a/modules/twitter-ext/modules/core/src/test/config/log4j2-test.xml b/modules/twitter-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 9a47edc..0000000
--- a/modules/twitter-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-
-        <RollingFile name="FILE"
-                     append="true"
-                     fileName="ignite/work/log/ignite.log"
-                     filePattern="ignite/work/log/ignite.log.%i">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <Policies>
-                <SizeBasedTriggeringPolicy size="10 MB"/>
-            </Policies>
-            <DefaultRolloverStrategy max="10"/>
-        </RollingFile>
-    </Appenders>
-
-    <Loggers>
-        <!--
-            Uncomment to enable Ignite query execution debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.query" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable Exchange, Rebalance and Partitions workflow debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.preloader" level="DEBUG"/>
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition counters.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.PartitionUpdateCounterDebugWrapper" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable transactions debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.cache.msg.tx.prepare" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.finish" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.recovery" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition eviction.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology.PartitionsEvictManager" level="DEBUG"/>
-        -->
-        <Logger name="org" level="INFO"/>
-        <Logger name="org.eclipse.jetty" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="FILE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/twitter-ext/modules/core/src/test/config/tests.properties b/modules/twitter-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 18b3606..0000000
--- a/modules/twitter-ext/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,153 +0,0 @@
-#
-# 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.
-#
-
-# Local address to bind to.
-local.ip=127.0.0.1
-
-# TCP communication port
-comm.tcp.port=30010
-
-# JBoss JNDI
-# JBoss context factory for JNDI connection establishing.
-jboss.jndi.context.factory=org.jnp.interfaces.NamingContextFactory
-# JBoss specific parameter for JNDI connection establishing.
-jboss.jndi.pkg.prefixes=org.jboss.naming:org.jnp.interfaces
-# URL of JBoss server for the 1st node.
-jboss.jndi.node1.provider.url=jnp://localhost:1199
-# URL of JBoss server for the 2nd node.
-jboss.jndi.node2.provider.url=jnp://localhost:1299
-# JBoss Discovery test max wait time.
-jboss.disco.test.wait=180000
-
-# Deployment configuration paths.
-# You will either need to override deploy.uri.dir or supply CLASSES_URI as system property.
-#
-# Path to keystore with private and public keys.
-deploy.uri.secure.keystore=@{IGNITE_HOME}/modules/tests/config/securedeploy/keystore
-# Temporary dir where deployment unit stored before deploy.
-deploy.uri.tmpdir=${java.io.tmpdir}/gg
-# Deployment dir for file scanner test with different types of GAR's.
-deploy.uri.file2.path=${java.io.tmpdir}/gg/verification/
-# URI string.
-deploy.uri.file2=file://freq=200@localhost/${java.io.tmpdir}/gg/verification/
-# File scanner URI for local file deployment.
-deploy.uri.file=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/file/
-# FTP scanner URI for FTP deployment.
-deploy.uri.ftp=ftp://ftptest:iddqd@94.72.60.102:21/test/deployment
-# Classes scanner URI for classes deployment. Must be overridden for every user.
-deploy.uri.cls=${CLASSES_URI}
-# Http scanner URI for HTTP deployment.
-deploy.uri.http=http://fake.uri
-# Http scanner URI for secure SSL HTTPs deployment.
-deploy.uri.https=https://fake.uri
-# Directory with descriptors to construct GAR files.
-deploy.gar.descriptor.dir=modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/META-INF
-
-# Directory with a number of descriptors for the Ant gar task.
-ant.gar.descriptor.dir=modules/extdata/p2p/META-INF
-# Temporary directory for the Ant task resulting GAR file.
-ant.gar.tmpdir=${java.io.tmpdir}/gg
-# The same as p2p.uri.cls but without protocol
-ant.gar.srcdir=@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# Paths to use in URI deployment SPI tests
-urideployment.jar.uri=modules/extdata/uri/target/deploy/uri.jar
-urideployment.path.tmp=modules/extdata/uri/target/deploy_tmp/
-
-# GAR paths to use in URI deployment SPI tests
-ant.urideployment.gar.uri=file://freq=5000@localhost/EXTDATA/uri/target/deploy
-ant.urideployment.gar.file=modules/extdata/uri/target/deploy/uri.gar
-ant.urideployment.gar.libs-file=modules/extdata/uri/target/deploy2/uri-libs.gar
-ant.urideployment.gar.classes-file=modules/extdata/uri/target/deploy2/uri-classes.gar
-ant.urideployment.gar.path=modules/extdata/uri/target/deploy/
-
-# Classpath directory for GridP2PUserVersionChangeSelfTest
-ant.userversion.class.dir=@{IGNITE_HOME}/modules/tests/java/
-
-# Multicast discovery self test.
-discovery.mbeanserver.selftest.baseport=50000
-
-# TCP communication self test.
-comm.mbeanserver.selftest.baseport=50100
-
-# Kernel tests.
-grid.comm.selftest.sender.timeout=1000
-grid.comm.selftest.timeout=10000
-
-#P2P tests
-#Overwrite this property. It should point to P2P module compilation directory.
-p2p.uri.cls=file://localhost/@{IGNITE_HOME}/modules/extdata/p2p/target/classes/
-p2p.uri.cls.second=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# AOP tests.
-# Connector port for RMI.
-connector.rmi.port=7657
-# Connector port for XFire Web Service.
-connector.ws.port=9090
-
-# Load test duration in minutes.
-load.test.duration=500
-load.test.threadnum=50
-load.test.nodenum=5
-
-# Loaders tests
-loader.self.test.config=modules/core/src/test/config/loaders/grid-cfg.xml
-loader.self.multipletest.config=modules/core/src/test/config/loaders/grid-cfg-2-grids.xml
-loader.self.test.jboss.config=modules/core/src/test/config/loaders/grid-cfg.xml
-
-# WebSphere jmx properties
-websphere.jmx.connector.host=localhost
-websphere.jmx.connector.port=8880
-websphere.jmx.connector.security=false
-websphere.jmx.username=
-websphere.jmx.pwd=
-
-# GlassFish jmx properties for GlassFish Loader
-glassfish.jmx.rmi.connector.port=8686
-glassfish.jmx.username=admin
-glassfish.jmx.password=adminadmin
-
-# Tomcat jmx properties for Servlet Loader
-tomcat.jmx.rmi.connector.port=1097
-
-# Marshaller for tests
-#marshaller.class=org.apache.ignite.marshaller.jdk.GridJdkMarshaller
-
-# EC2 configuration for tests
-#amazon.access.key=
-#amazon.secret.key=
-
-# SSH config.
-ssh.username=uname
-ssh.password=passwd
-
-# SSL tests keystore.
-ssl.keystore.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/server.jks
-ssl.keystore.password=123456
-
-# node01 signed with trust-one, node02 and node03 by trust-two, node02old is expired
-# trust-both contains both CAs
-ssl.keystore.node01.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node01.jks
-ssl.keystore.node02.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02.jks
-ssl.keystore.node03.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node03.jks
-ssl.keystore.trustone.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-one.jks
-ssl.keystore.trusttwo.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-two.jks
-ssl.keystore.trustboth.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-both.jks
-ssl.keystore.node02old.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02old.jks
-
-# Hadoop home directory.
-hadoop.home=@{HADOOP_HOME}
diff --git a/modules/zeromq-ext/modules/core/src/test/config/log4j2-test.xml b/modules/zeromq-ext/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 9a47edc..0000000
--- a/modules/zeromq-ext/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-
-        <RollingFile name="FILE"
-                     append="true"
-                     fileName="ignite/work/log/ignite.log"
-                     filePattern="ignite/work/log/ignite.log.%i">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <Policies>
-                <SizeBasedTriggeringPolicy size="10 MB"/>
-            </Policies>
-            <DefaultRolloverStrategy max="10"/>
-        </RollingFile>
-    </Appenders>
-
-    <Loggers>
-        <!--
-            Uncomment to enable Ignite query execution debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.query" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable Exchange, Rebalance and Partitions workflow debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.preloader" level="DEBUG"/>
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition counters.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.PartitionUpdateCounterDebugWrapper" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable transactions debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.cache.msg.tx.prepare" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.finish" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.recovery" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition eviction.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology.PartitionsEvictManager" level="DEBUG"/>
-        -->
-        <Logger name="org" level="INFO"/>
-        <Logger name="org.eclipse.jetty" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="FILE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/zeromq-ext/modules/core/src/test/config/tests.properties b/modules/zeromq-ext/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 18b3606..0000000
--- a/modules/zeromq-ext/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,153 +0,0 @@
-#
-# 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.
-#
-
-# Local address to bind to.
-local.ip=127.0.0.1
-
-# TCP communication port
-comm.tcp.port=30010
-
-# JBoss JNDI
-# JBoss context factory for JNDI connection establishing.
-jboss.jndi.context.factory=org.jnp.interfaces.NamingContextFactory
-# JBoss specific parameter for JNDI connection establishing.
-jboss.jndi.pkg.prefixes=org.jboss.naming:org.jnp.interfaces
-# URL of JBoss server for the 1st node.
-jboss.jndi.node1.provider.url=jnp://localhost:1199
-# URL of JBoss server for the 2nd node.
-jboss.jndi.node2.provider.url=jnp://localhost:1299
-# JBoss Discovery test max wait time.
-jboss.disco.test.wait=180000
-
-# Deployment configuration paths.
-# You will either need to override deploy.uri.dir or supply CLASSES_URI as system property.
-#
-# Path to keystore with private and public keys.
-deploy.uri.secure.keystore=@{IGNITE_HOME}/modules/tests/config/securedeploy/keystore
-# Temporary dir where deployment unit stored before deploy.
-deploy.uri.tmpdir=${java.io.tmpdir}/gg
-# Deployment dir for file scanner test with different types of GAR's.
-deploy.uri.file2.path=${java.io.tmpdir}/gg/verification/
-# URI string.
-deploy.uri.file2=file://freq=200@localhost/${java.io.tmpdir}/gg/verification/
-# File scanner URI for local file deployment.
-deploy.uri.file=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/file/
-# FTP scanner URI for FTP deployment.
-deploy.uri.ftp=ftp://ftptest:iddqd@94.72.60.102:21/test/deployment
-# Classes scanner URI for classes deployment. Must be overridden for every user.
-deploy.uri.cls=${CLASSES_URI}
-# Http scanner URI for HTTP deployment.
-deploy.uri.http=http://fake.uri
-# Http scanner URI for secure SSL HTTPs deployment.
-deploy.uri.https=https://fake.uri
-# Directory with descriptors to construct GAR files.
-deploy.gar.descriptor.dir=modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/META-INF
-
-# Directory with a number of descriptors for the Ant gar task.
-ant.gar.descriptor.dir=modules/extdata/p2p/META-INF
-# Temporary directory for the Ant task resulting GAR file.
-ant.gar.tmpdir=${java.io.tmpdir}/gg
-# The same as p2p.uri.cls but without protocol
-ant.gar.srcdir=@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# Paths to use in URI deployment SPI tests
-urideployment.jar.uri=modules/extdata/uri/target/deploy/uri.jar
-urideployment.path.tmp=modules/extdata/uri/target/deploy_tmp/
-
-# GAR paths to use in URI deployment SPI tests
-ant.urideployment.gar.uri=file://freq=5000@localhost/EXTDATA/uri/target/deploy
-ant.urideployment.gar.file=modules/extdata/uri/target/deploy/uri.gar
-ant.urideployment.gar.libs-file=modules/extdata/uri/target/deploy2/uri-libs.gar
-ant.urideployment.gar.classes-file=modules/extdata/uri/target/deploy2/uri-classes.gar
-ant.urideployment.gar.path=modules/extdata/uri/target/deploy/
-
-# Classpath directory for GridP2PUserVersionChangeSelfTest
-ant.userversion.class.dir=@{IGNITE_HOME}/modules/tests/java/
-
-# Multicast discovery self test.
-discovery.mbeanserver.selftest.baseport=50000
-
-# TCP communication self test.
-comm.mbeanserver.selftest.baseport=50100
-
-# Kernel tests.
-grid.comm.selftest.sender.timeout=1000
-grid.comm.selftest.timeout=10000
-
-#P2P tests
-#Overwrite this property. It should point to P2P module compilation directory.
-p2p.uri.cls=file://localhost/@{IGNITE_HOME}/modules/extdata/p2p/target/classes/
-p2p.uri.cls.second=file://localhost/@{IGNITE_HOME}/modules/extdata/uri/target/classes/
-
-# AOP tests.
-# Connector port for RMI.
-connector.rmi.port=7657
-# Connector port for XFire Web Service.
-connector.ws.port=9090
-
-# Load test duration in minutes.
-load.test.duration=500
-load.test.threadnum=50
-load.test.nodenum=5
-
-# Loaders tests
-loader.self.test.config=modules/core/src/test/config/loaders/grid-cfg.xml
-loader.self.multipletest.config=modules/core/src/test/config/loaders/grid-cfg-2-grids.xml
-loader.self.test.jboss.config=modules/core/src/test/config/loaders/grid-cfg.xml
-
-# WebSphere jmx properties
-websphere.jmx.connector.host=localhost
-websphere.jmx.connector.port=8880
-websphere.jmx.connector.security=false
-websphere.jmx.username=
-websphere.jmx.pwd=
-
-# GlassFish jmx properties for GlassFish Loader
-glassfish.jmx.rmi.connector.port=8686
-glassfish.jmx.username=admin
-glassfish.jmx.password=adminadmin
-
-# Tomcat jmx properties for Servlet Loader
-tomcat.jmx.rmi.connector.port=1097
-
-# Marshaller for tests
-#marshaller.class=org.apache.ignite.marshaller.jdk.GridJdkMarshaller
-
-# EC2 configuration for tests
-#amazon.access.key=
-#amazon.secret.key=
-
-# SSH config.
-ssh.username=uname
-ssh.password=passwd
-
-# SSL tests keystore.
-ssl.keystore.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/server.jks
-ssl.keystore.password=123456
-
-# node01 signed with trust-one, node02 and node03 by trust-two, node02old is expired
-# trust-both contains both CAs
-ssl.keystore.node01.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node01.jks
-ssl.keystore.node02.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02.jks
-ssl.keystore.node03.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node03.jks
-ssl.keystore.trustone.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-one.jks
-ssl.keystore.trusttwo.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-two.jks
-ssl.keystore.trustboth.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/trust-both.jks
-ssl.keystore.node02old.path=@{IGNITE_HOME}/modules/clients/src/test/keystore/ca/node02old.jks
-
-# Hadoop home directory.
-hadoop.home=@{HADOOP_HOME}
diff --git a/modules/zookeeper-ip-finder-ext/zookeeper-ip-finder/modules/core/src/test/config/log4j2-test.xml b/modules/zookeeper-ip-finder-ext/zookeeper-ip-finder/modules/core/src/test/config/log4j2-test.xml
deleted file mode 100644
index 9a47edc..0000000
--- a/modules/zookeeper-ip-finder-ext/zookeeper-ip-finder/modules/core/src/test/config/log4j2-test.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  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.
--->
-
-<Configuration>
-    <Appenders>
-        <Console name="CONSOLE" target="SYSTEM_OUT">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <LevelRangeFilter minLevel="INFO" maxLevel="DEBUG"/>
-        </Console>
-
-        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}] %m%n"/>
-        </Console>
-
-        <RollingFile name="FILE"
-                     append="true"
-                     fileName="ignite/work/log/ignite.log"
-                     filePattern="ignite/work/log/ignite.log.%i">
-            <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/>
-            <Policies>
-                <SizeBasedTriggeringPolicy size="10 MB"/>
-            </Policies>
-            <DefaultRolloverStrategy max="10"/>
-        </RollingFile>
-    </Appenders>
-
-    <Loggers>
-        <!--
-            Uncomment to enable Ignite query execution debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.query" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable Exchange, Rebalance and Partitions workflow debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.preloader" level="DEBUG"/>
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition counters.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.PartitionUpdateCounterDebugWrapper" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable transactions debugging.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.cache.msg.tx.prepare" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.finish" level="DEBUG"/>
-            <Logger name="org.apache.ignite.cache.msg.tx.recovery" level="DEBUG"/>
-        -->
-
-        <!--
-            Uncomment to enable debugging of partition eviction.
-        -->
-        <!--
-            <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.topology.PartitionsEvictManager" level="DEBUG"/>
-        -->
-        <Logger name="org" level="INFO"/>
-        <Logger name="org.eclipse.jetty" level="INFO"/>
-
-        <Root level="INFO">
-            <AppenderRef ref="FILE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE" level="DEBUG"/>
-            <AppenderRef ref="CONSOLE_ERR" level="WARN"/>
-        </Root>
-    </Loggers>
-</Configuration>
diff --git a/modules/zookeeper-ip-finder-ext/zookeeper-ip-finder/modules/core/src/test/config/tests.properties b/modules/zookeeper-ip-finder-ext/zookeeper-ip-finder/modules/core/src/test/config/tests.properties
deleted file mode 100644
index 0faf5b8..0000000
--- a/modules/zookeeper-ip-finder-ext/zookeeper-ip-finder/modules/core/src/test/config/tests.properties
+++ /dev/null
@@ -1,22 +0,0 @@
-#
-# 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.
-#
-
-# Local address to bind to.
-local.ip=127.0.0.1
-
-# TCP communication port
-comm.tcp.port=30010