Correct the forked GemFire/Geode Server classpath based on updated 1.9 transitive dependencies and GemFire/Geode module changes.

This commit is contained in:
John Blum
2019-05-22 19:24:40 -07:00
parent 5a2aa14548
commit 46be861dcf

View File

@@ -125,8 +125,8 @@ public class SessionSerializationWithPdxRequiresNoServerConfigurationIntegration
System.setProperty("spring.session.data.gemfire.cache.server.port", String.valueOf(port));
String classpath = buildClassPathContainingJarFiles("javax.transaction-api", "antlr",
"commons-lang", "fastutil", "log4j-api", "log4j-core", "geode-common", "geode-core", "jgroups",
"shiro-core", "slf4j-api");
"commons-lang", "commons-io", "fastutil", "log4j-api", "log4j-core", "geode-common", "geode-core",
"geode-management", "jgroups", "micrometer-core", "shiro-core", "slf4j-api");
String processWorkingDirectoryPathname =
String.format("gemfire-server-pdx-serialization-tests-%1$s", TIMESTAMP.format(new Date()));
@@ -137,7 +137,7 @@ public class SessionSerializationWithPdxRequiresNoServerConfigurationIntegration
processWorkingDirectory, String.format("-Dspring.session.data.gemfire.cache.server.port=%d", port),
String.format("-Dgemfire.log-level=%s", GEMFIRE_LOG_LEVEL));
assertThat(waitForServerToStart("localhost", port)).isTrue();
assertThat(waitForServerToStart("localhost", port)).isTrue();
System.err.printf("GemFire Server [startup time = %d ms]%n", System.currentTimeMillis() - t0);
}