readLines(File file)
- {
- try
- {
- return Files.readAllLines(file.toPath(), CHARSET);
- }
- catch (IOException ex)
- {
- if (ex instanceof NoSuchFileException)
- return Collections.emptyList();
-
- throw new RuntimeException(ex);
- }
- }
-
- public static void setFSErrorHandler(FSErrorHandler handler)
- {
- fsErrorHandler.getAndSet(Optional.ofNullable(handler));
- }
-
- /**
- * Returns the size of the specified partition.
- * This method handles large file system by returning {@code Long.MAX_VALUE} if the size overflow.
- * See JDK-8179320 for more information.
- *
- * @param file the partition
- * @return the size, in bytes, of the partition or {@code 0L} if the abstract pathname does not name a partition
- */
- public static long getTotalSpace(File file)
- {
- return handleLargeFileSystem(file.getTotalSpace());
- }
-
- /**
- * Returns the number of unallocated bytes on the specified partition.
- * This method handles large file system by returning {@code Long.MAX_VALUE} if the number of unallocated bytes
- * overflow. See JDK-8179320 for more information
- *
- * @param file the partition
- * @return the number of unallocated bytes on the partition or {@code 0L}
- * if the abstract pathname does not name a partition.
- */
- public static long getFreeSpace(File file)
- {
- return handleLargeFileSystem(file.getFreeSpace());
- }
-
- /**
- * Returns the number of available bytes on the specified partition.
- * This method handles large file system by returning {@code Long.MAX_VALUE} if the number of available bytes
- * overflow. See JDK-8179320 for more information
- *
- * @param file the partition
- * @return the number of available bytes on the partition or {@code 0L}
- * if the abstract pathname does not name a partition.
- */
- public static long getUsableSpace(File file)
- {
- return handleLargeFileSystem(file.getUsableSpace());
- }
-
- /**
- * Returns the {@link FileStore} representing the file store where a file
- * is located. This {@link FileStore} handles large file system by returning {@code Long.MAX_VALUE}
- * from {@code FileStore#getTotalSpace()}, {@code FileStore#getUnallocatedSpace()} and {@code FileStore#getUsableSpace()}
- * it the value is bigger than {@code Long.MAX_VALUE}. See JDK-8162520
- * for more information.
- *
- * @param path the path to the file
- * @return the file store where the file is stored
- */
- public static FileStore getFileStore(Path path) throws IOException
- {
- return new SafeFileStore(Files.getFileStore(path));
- }
-
- /**
- * Handle large file system by returning {@code Long.MAX_VALUE} when the size overflows.
- * @param size returned by the Java's FileStore methods
- * @return the size or {@code Long.MAX_VALUE} if the size was bigger than {@code Long.MAX_VALUE}
- */
- private static long handleLargeFileSystem(long size)
- {
- return size < 0 ? Long.MAX_VALUE : size;
- }
-
- /**
- * Private constructor as the class contains only static methods.
- */
- private FileUtils()
- {
- }
-
- /**
- * FileStore decorator used to safely handle large file system.
- *
- * Java's FileStore methods (getTotalSpace/getUnallocatedSpace/getUsableSpace) are limited to reporting bytes as
- * signed long (2^63-1), if the filesystem is any bigger, then the size overflows. {@code SafeFileStore} will
- * return {@code Long.MAX_VALUE} if the size overflow.
- *
- * @see https://bugs.openjdk.java.net/browse/JDK-8162520.
- */
- private static final class SafeFileStore extends FileStore
- {
- /**
- * The decorated {@code FileStore}
- */
- private final FileStore fileStore;
-
- public SafeFileStore(FileStore fileStore)
- {
- this.fileStore = fileStore;
- }
-
- @Override
- public String name()
- {
- return fileStore.name();
- }
-
- @Override
- public String type()
- {
- return fileStore.type();
- }
-
- @Override
- public boolean isReadOnly()
- {
- return fileStore.isReadOnly();
- }
-
- @Override
- public long getTotalSpace() throws IOException
- {
- return handleLargeFileSystem(fileStore.getTotalSpace());
- }
-
- @Override
- public long getUsableSpace() throws IOException
- {
- return handleLargeFileSystem(fileStore.getUsableSpace());
- }
-
- @Override
- public long getUnallocatedSpace() throws IOException
- {
- return handleLargeFileSystem(fileStore.getUnallocatedSpace());
- }
-
- @Override
- public boolean supportsFileAttributeView(Class extends FileAttributeView> type)
- {
- return fileStore.supportsFileAttributeView(type);
- }
-
- @Override
- public boolean supportsFileAttributeView(String name)
- {
- return fileStore.supportsFileAttributeView(name);
- }
-
- @Override
- public V getFileStoreAttributeView(Class type)
- {
- return fileStore.getFileStoreAttributeView(type);
- }
-
- @Override
- public Object getAttribute(String attribute) throws IOException
- {
- return fileStore.getAttribute(attribute);
- }
- }
-}
diff --git a/dao/src/test/java/org/thingsboard/server/dao/AbstractNoSqlContainer.java b/dao/src/test/java/org/thingsboard/server/dao/AbstractNoSqlContainer.java
new file mode 100644
index 0000000000..3f7c2c779a
--- /dev/null
+++ b/dao/src/test/java/org/thingsboard/server/dao/AbstractNoSqlContainer.java
@@ -0,0 +1,96 @@
+/**
+ * Copyright © 2016-2023 The Thingsboard Authors
+ *
+ * Licensed 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.
+ */
+
+package org.thingsboard.server.dao;
+
+import com.github.dockerjava.api.command.InspectContainerResponse;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.commons.io.IOUtils;
+import org.junit.ClassRule;
+import org.junit.rules.ExternalResource;
+import org.testcontainers.containers.CassandraContainer;
+import org.testcontainers.containers.delegate.CassandraDatabaseDelegate;
+import org.testcontainers.delegate.DatabaseDelegate;
+import org.testcontainers.ext.ScriptUtils;
+
+import javax.script.ScriptException;
+import java.io.IOException;
+import java.net.URL;
+import java.nio.charset.StandardCharsets;
+import java.util.List;
+
+@Slf4j
+public abstract class AbstractNoSqlContainer {
+
+ public static final List INIT_SCRIPTS = List.of(
+ "cassandra/schema-keyspace.cql",
+ "cassandra/schema-ts.cql",
+ "cassandra/schema-ts-latest.cql"
+ );
+
+ @ClassRule(order = 0)
+ public static final CassandraContainer cassandra = (CassandraContainer) new CassandraContainer("cassandra:4.1") {
+ @Override
+ protected void containerIsStarted(InspectContainerResponse containerInfo) {
+ super.containerIsStarted(containerInfo);
+ DatabaseDelegate db = new CassandraDatabaseDelegate(this);
+ INIT_SCRIPTS.forEach(script -> runInitScriptIfRequired(db, script));
+ }
+
+ private void runInitScriptIfRequired(DatabaseDelegate db, String initScriptPath) {
+ logger().info("Init script [{}]", initScriptPath);
+ if (initScriptPath != null) {
+ try {
+ URL resource = Thread.currentThread().getContextClassLoader().getResource(initScriptPath);
+ if (resource == null) {
+ logger().warn("Could not load classpath init script: {}", initScriptPath);
+ throw new ScriptUtils.ScriptLoadException("Could not load classpath init script: " + initScriptPath + ". Resource not found.");
+ }
+ String cql = IOUtils.toString(resource, StandardCharsets.UTF_8);
+ ScriptUtils.executeDatabaseScript(db, initScriptPath, cql);
+ } catch (IOException e) {
+ logger().warn("Could not load classpath init script: {}", initScriptPath);
+ throw new ScriptUtils.ScriptLoadException("Could not load classpath init script: " + initScriptPath, e);
+ } catch (ScriptException e) {
+ logger().error("Error while executing init script: {}", initScriptPath, e);
+ throw new ScriptUtils.UncategorizedScriptException("Error while executing init script: " + initScriptPath, e);
+ }
+ }
+ }
+ }
+ .withEnv("HEAP_NEWSIZE", "64M")
+ .withEnv("MAX_HEAP_SIZE", "512M")
+ .withEnv("CASSANDRA_CLUSTER_NAME", "ThingsBoard Cluster");
+
+ @ClassRule(order = 1)
+ public static ExternalResource resource = new ExternalResource() {
+ @Override
+ protected void before() throws Throwable {
+ cassandra.start();
+ String cassandraUrl = String.format("%s:%s", cassandra.getHost(), cassandra.getMappedPort(9042));
+ log.debug("Cassandra url [{}]", cassandraUrl);
+ System.setProperty("cassandra.url", cassandraUrl);
+ }
+
+ @Override
+ protected void after() {
+ cassandra.stop();
+ List.of("cassandra.url")
+ .forEach(System.getProperties()::remove);
+ }
+ };
+
+}
diff --git a/dao/src/test/java/org/thingsboard/server/dao/AbstractRedisContainer.java b/dao/src/test/java/org/thingsboard/server/dao/AbstractRedisContainer.java
new file mode 100644
index 0000000000..e9a6cb8641
--- /dev/null
+++ b/dao/src/test/java/org/thingsboard/server/dao/AbstractRedisContainer.java
@@ -0,0 +1,51 @@
+/**
+ * Copyright © 2016-2023 The Thingsboard Authors
+ *
+ * Licensed 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.
+ */
+package org.thingsboard.server.dao;
+
+import lombok.extern.slf4j.Slf4j;
+import org.junit.ClassRule;
+import org.junit.rules.ExternalResource;
+import org.testcontainers.containers.GenericContainer;
+
+import java.util.List;
+
+@Slf4j
+public class AbstractRedisContainer {
+
+ @ClassRule(order = 0)
+ public static GenericContainer redis = new GenericContainer("redis:7.0")
+ .withExposedPorts(6379);
+
+ @ClassRule(order = 1)
+ public static ExternalResource resource = new ExternalResource() {
+ @Override
+ protected void before() throws Throwable {
+ redis.start();
+ System.setProperty("cache.type", "redis");
+ System.setProperty("redis.connection.type", "standalone");
+ System.setProperty("redis.standalone.host", redis.getHost());
+ System.setProperty("redis.standalone.port", String.valueOf(redis.getMappedPort(6379)));
+ }
+
+ @Override
+ protected void after() {
+ redis.stop();
+ List.of("cache.type", "redis.connection.type", "redis.standalone.host", "redis.standalone.port")
+ .forEach(System.getProperties()::remove);
+ }
+ };
+
+}
diff --git a/dao/src/test/java/org/thingsboard/server/dao/CustomCassandraCQLUnit.java b/dao/src/test/java/org/thingsboard/server/dao/CustomCassandraCQLUnit.java
deleted file mode 100644
index 7bab5e1138..0000000000
--- a/dao/src/test/java/org/thingsboard/server/dao/CustomCassandraCQLUnit.java
+++ /dev/null
@@ -1,88 +0,0 @@
-/**
- * Copyright © 2016-2023 The Thingsboard Authors
- *
- * Licensed 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.
- */
-package org.thingsboard.server.dao;
-
-import com.datastax.oss.driver.api.core.CqlSession;
-import org.cassandraunit.BaseCassandraUnit;
-import org.cassandraunit.CQLDataLoader;
-import org.cassandraunit.dataset.CQLDataSet;
-import org.cassandraunit.utils.EmbeddedCassandraServerHelper;
-
-import java.util.List;
-
-public class CustomCassandraCQLUnit extends BaseCassandraUnit {
- protected List dataSets;
-
- public CqlSession session;
-
- public CustomCassandraCQLUnit(List dataSets) {
- this.dataSets = dataSets;
- }
-
- public CustomCassandraCQLUnit(List dataSets, int readTimeoutMillis) {
- this.dataSets = dataSets;
- this.readTimeoutMillis = readTimeoutMillis;
- }
-
- public CustomCassandraCQLUnit(List dataSets, String configurationFileName) {
- this(dataSets);
- this.configurationFileName = configurationFileName;
- }
-
- public CustomCassandraCQLUnit(List dataSets, String configurationFileName, int readTimeoutMillis) {
- this(dataSets);
- this.configurationFileName = configurationFileName;
- this.readTimeoutMillis = readTimeoutMillis;
- }
-
- public CustomCassandraCQLUnit(List dataSets, String configurationFileName, long startUpTimeoutMillis) {
- super(startUpTimeoutMillis);
- this.dataSets = dataSets;
- this.configurationFileName = configurationFileName;
- }
-
- public CustomCassandraCQLUnit(List dataSets, String configurationFileName, long startUpTimeoutMillis, int readTimeoutMillis) {
- super(startUpTimeoutMillis);
- this.dataSets = dataSets;
- this.configurationFileName = configurationFileName;
- this.readTimeoutMillis = readTimeoutMillis;
- }
-
- @Override
- protected void load() {
- session = EmbeddedCassandraServerHelper.getSession();
- CQLDataLoader dataLoader = new CQLDataLoader(session);
- dataSets.forEach(dataLoader::load);
- session = dataLoader.getSession();
- System.setSecurityManager(null);
- }
-
- @Override
- protected void after() {
- super.after();
- try (CqlSession s = session) {
- session = null;
- }
- System.setSecurityManager(null);
- }
-
- // Getters for those who do not like to directly access fields
-
- public CqlSession getSession() {
- return session;
- }
-
-}
diff --git a/dao/src/test/java/org/thingsboard/server/dao/NoSqlDaoServiceTestSuite.java b/dao/src/test/java/org/thingsboard/server/dao/NoSqlDaoServiceTestSuite.java
index 1cc88f5734..9f82b8735a 100644
--- a/dao/src/test/java/org/thingsboard/server/dao/NoSqlDaoServiceTestSuite.java
+++ b/dao/src/test/java/org/thingsboard/server/dao/NoSqlDaoServiceTestSuite.java
@@ -15,28 +15,14 @@
*/
package org.thingsboard.server.dao;
-import org.cassandraunit.dataset.cql.ClassPathCQLDataSet;
-import org.junit.ClassRule;
import org.junit.extensions.cpsuite.ClasspathSuite;
import org.junit.extensions.cpsuite.ClasspathSuite.ClassnameFilters;
import org.junit.runner.RunWith;
-import java.util.Arrays;
-
@RunWith(ClasspathSuite.class)
@ClassnameFilters({
"org.thingsboard.server.dao.service.*.nosql.*ServiceNoSqlTest",
})
-public class NoSqlDaoServiceTestSuite {
-
- @ClassRule
- public static CustomCassandraCQLUnit cassandraUnit =
- new CustomCassandraCQLUnit(
- Arrays.asList(
- new ClassPathCQLDataSet("cassandra/schema-keyspace.cql", false, false),
- new ClassPathCQLDataSet("cassandra/schema-ts.cql", false, false),
- new ClassPathCQLDataSet("cassandra/schema-ts-latest.cql", false, false)
- ),
- "cassandra-test.yaml", 30000L);
+public class NoSqlDaoServiceTestSuite extends AbstractNoSqlContainer {
}
diff --git a/dao/src/test/java/org/thingsboard/server/dao/RedisSqlTestSuite.java b/dao/src/test/java/org/thingsboard/server/dao/RedisSqlTestSuite.java
index 2fa63f2387..61f77ee1b7 100644
--- a/dao/src/test/java/org/thingsboard/server/dao/RedisSqlTestSuite.java
+++ b/dao/src/test/java/org/thingsboard/server/dao/RedisSqlTestSuite.java
@@ -15,37 +15,15 @@
*/
package org.thingsboard.server.dao;
-import org.junit.ClassRule;
import org.junit.extensions.cpsuite.ClasspathSuite;
import org.junit.extensions.cpsuite.ClasspathSuite.ClassnameFilters;
import org.junit.runner.RunWith;
-import org.springframework.context.ApplicationContextInitializer;
-import org.springframework.context.ConfigurableApplicationContext;
-import org.springframework.test.context.ContextConfiguration;
-import org.springframework.test.context.support.TestPropertySourceUtils;
-import org.testcontainers.containers.GenericContainer;
-@ContextConfiguration(initializers = RedisSqlTestSuite.class)
@RunWith(ClasspathSuite.class)
@ClassnameFilters(
//All the same tests using redis instead of caffeine.
"org.thingsboard.server.dao.service.*ServiceSqlTest"
)
-public class RedisSqlTestSuite implements ApplicationContextInitializer {
-
- @ClassRule
- public static GenericContainer redis = new GenericContainer("redis:4.0").withExposedPorts(6379);
-
- @Override
- public void initialize(ConfigurableApplicationContext applicationContext) {
- TestPropertySourceUtils.addInlinedPropertiesToEnvironment(
- applicationContext, "cache.type=redis");
- TestPropertySourceUtils.addInlinedPropertiesToEnvironment(
- applicationContext, "redis.connection.type=standalone");
- TestPropertySourceUtils.addInlinedPropertiesToEnvironment(
- applicationContext, "redis.standalone.host=localhost");
- TestPropertySourceUtils.addInlinedPropertiesToEnvironment(
- applicationContext, "redis.standalone.port=" + redis.getMappedPort(6379));
- }
+public class RedisSqlTestSuite extends AbstractRedisContainer {
}
diff --git a/dao/src/test/java/org/thingsboard/server/dao/service/BaseDeviceCredentialsCacheTest.java b/dao/src/test/java/org/thingsboard/server/dao/service/BaseDeviceCredentialsCacheTest.java
index 9415da99ea..7fc9f7b218 100644
--- a/dao/src/test/java/org/thingsboard/server/dao/service/BaseDeviceCredentialsCacheTest.java
+++ b/dao/src/test/java/org/thingsboard/server/dao/service/BaseDeviceCredentialsCacheTest.java
@@ -43,8 +43,8 @@ import static org.mockito.Mockito.when;
public abstract class BaseDeviceCredentialsCacheTest extends AbstractServiceTest {
- private static final String CREDENTIALS_ID_1 = StringUtils.randomAlphanumeric(20);
- private static final String CREDENTIALS_ID_2 = StringUtils.randomAlphanumeric(20);
+ private final String CREDENTIALS_ID_1 = StringUtils.randomAlphanumeric(20);
+ private final String CREDENTIALS_ID_2 = StringUtils.randomAlphanumeric(20);
@Autowired
private DeviceCredentialsService deviceCredentialsService;
diff --git a/dao/src/test/resources/application-test.properties b/dao/src/test/resources/application-test.properties
index 15131011d8..a2a21abc11 100644
--- a/dao/src/test/resources/application-test.properties
+++ b/dao/src/test/resources/application-test.properties
@@ -7,10 +7,9 @@ updates.enabled=false
audit-log.enabled=true
audit-log.sink.type=none
-cache.type=caffeine
+#cache.type=caffeine # will be injected redis by RedisContainer or will be default (caffeine)
cache.maximumPoolSize=16
cache.attributes.enabled=true
-#cache.type=redis
cache.specs.relations.timeToLiveInMinutes=1440
cache.specs.relations.maxSize=100000
diff --git a/dao/src/test/resources/cassandra-test.properties b/dao/src/test/resources/cassandra-test.properties
index 5765153a6f..5876582ee6 100644
--- a/dao/src/test/resources/cassandra-test.properties
+++ b/dao/src/test/resources/cassandra-test.properties
@@ -2,7 +2,7 @@ cassandra.cluster_name=Thingsboard Cluster
cassandra.keyspace_name=thingsboard
-cassandra.url=127.0.0.1:9142
+#cassandra.url=127.0.0.1:9142 # will be injected by NoSqlContainer
cassandra.local_datacenter=datacenter1
diff --git a/dao/src/test/resources/logback.xml b/dao/src/test/resources/logback.xml
index f74ba574b5..61397ec6f1 100644
--- a/dao/src/test/resources/logback.xml
+++ b/dao/src/test/resources/logback.xml
@@ -8,9 +8,7 @@
-
-
-
+
diff --git a/msa/black-box-tests/README.md b/msa/black-box-tests/README.md
index ae0e8b79a0..5b63ba712a 100644
--- a/msa/black-box-tests/README.md
+++ b/msa/black-box-tests/README.md
@@ -18,7 +18,7 @@ As result, in REPOSITORY column, next images should be present:
thingsboard/tb-web-ui
thingsboard/tb-js-executor
-- Run the black box tests in the [msa/black-box-tests](../black-box-tests) directory with Redis standalone:
+- Run the black box tests (without ui tests) in the [msa/black-box-tests](../black-box-tests) directory with Redis standalone:
mvn clean install -DblackBoxTests.skip=false
@@ -34,11 +34,23 @@ As result, in REPOSITORY column, next images should be present:
mvn clean install -DblackBoxTests.skip=false -DrunLocal=true
-- To run ui smoke tests in the [msa/black-box-tests](../black-box-tests) directory specifying suite name:
+- To run only ui tests in the [msa/black-box-tests](../black-box-tests) directory:
mvn clean install -DblackBoxTests.skip=false -Dsuite=uiTests
-- To run all tests in the [msa/black-box-tests](../black-box-tests) directory specifying suite name:
+- To run only ui smoke rule chains tests in the [msa/black-box-tests](../black-box-tests) directory:
+
+ mvn clean install -DblackBoxTests.skip=false -Dsuite=smokesRuleChain
+
+- To run only ui smoke customers tests in the [msa/black-box-tests](../black-box-tests) directory:
+
+ mvn clean install -DblackBoxTests.skip=false -Dsuite=smokesCustomer
+
+- To run only ui smoke profiles tests in the [msa/black-box-tests](../black-box-tests) directory:
+
+ mvn clean install -DblackBoxTests.skip=false -Dsuite=smokesPrifiles
+
+- To run all tests (black-box and ui) in the [msa/black-box-tests](../black-box-tests) directory:
mvn clean install -DblackBoxTests.skip=false -Dsuite=all
diff --git a/msa/black-box-tests/src/test/java/org/thingsboard/server/msa/ui/pages/OtherPageElements.java b/msa/black-box-tests/src/test/java/org/thingsboard/server/msa/ui/pages/OtherPageElements.java
index 3b18df801f..99e737dba1 100644
--- a/msa/black-box-tests/src/test/java/org/thingsboard/server/msa/ui/pages/OtherPageElements.java
+++ b/msa/black-box-tests/src/test/java/org/thingsboard/server/msa/ui/pages/OtherPageElements.java
@@ -42,7 +42,7 @@ public class OtherPageElements extends AbstractBasePage {
private static final String MARKS_CHECKBOX = "//mat-row[contains (@class,'mat-selected')]//mat-checkbox[contains(@class, 'checked')]";
private static final String SELECT_ALL_CHECKBOX = "//thead//mat-checkbox";
private static final String ALL_ENTITY = "//mat-row[@class='mat-row cdk-row mat-row-select ng-star-inserted']";
- private static final String EDIT_PENCIL_BTN = "//mat-icon[contains(text(),'edit')]/ancestor::button";
+ private static final String EDIT_PENCIL_BTN = "//tb-details-panel//mat-icon[contains(text(),'edit')]/ancestor::button";
private static final String NAME_FIELD_EDIT_VIEW = "//input[@formcontrolname='name']";
private static final String HEADER_NAME_VIEW = "//header//div[@class='tb-details-title']/span";
private static final String DONE_BTN_EDIT_VIEW = "//mat-icon[contains(text(),'done')]/ancestor::button";
diff --git a/pom.xml b/pom.xml
index 7d6b59f10b..77aeb81498 100755
--- a/pom.xml
+++ b/pom.xml
@@ -126,7 +126,6 @@
2.8.5
4.1.0
- 4.3.1.0
2.7.2
1.5.2
5.8.2
@@ -659,7 +658,7 @@
${surefire.version}
- --illegal-access=permit -Xss384k -XX:+UseStringDeduplication -XX:MaxGCPauseMillis=20
+ --illegal-access=permit -XX:+UseStringDeduplication -XX:MaxGCPauseMillis=20
@@ -1603,26 +1602,6 @@