Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WFARQ-44 switch order while StandaloneCommandBuilder is built #139

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -107,11 +107,6 @@ protected void startInternal() throws LifecycleException {
commandBuilder.addJavaOption("-ea");
}

// Create a clean server base to run the container; ARQ-638
if (config.isSetupCleanServerBaseDir() || config.getCleanServerBaseDir() != null) {
setupCleanServerDirectories(commandBuilder, config.getCleanServerBaseDir());
}

if (config.isAdminOnly())
commandBuilder.setAdminOnly();

Expand All @@ -123,6 +118,11 @@ protected void startInternal() throws LifecycleException {
commandBuilder.setServerConfiguration(config.getServerConfig());
}

// Create a clean server base to run the container; ARQ-638
if (config.isSetupCleanServerBaseDir() || config.getCleanServerBaseDir() != null) {
setupCleanServerDirectories(commandBuilder, config.getCleanServerBaseDir());
}

// Previous versions of arquillian set the jboss.home.dir property in the JVM properties.
// Some tests may rely on this behavior, but could be considered to be removed as all the scripts add this
// property after the modules path (-mp) has been defined. The command builder will set the property after
Expand Down