Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,17 @@

package org.citrusframework;

import org.citrusframework.common.TestLoader;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.File;
import java.io.InputStream;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
import java.util.stream.Stream;

import org.citrusframework.common.TestLoader;
import org.citrusframework.message.MessageType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import static java.lang.Boolean.parseBoolean;
import static java.lang.System.getProperty;
import static java.lang.System.getenv;
Expand All @@ -40,6 +39,7 @@
import static org.citrusframework.common.TestLoader.JAVA;
import static org.citrusframework.common.TestLoader.SPRING;
import static org.citrusframework.common.TestLoader.YAML;
import static org.citrusframework.message.MessageType.XML;

public final class CitrusSettings {

Expand Down Expand Up @@ -211,7 +211,7 @@ private CitrusSettings() {
public static final String DEFAULT_MESSAGE_TYPE = getPropertyEnvOrDefault(
DEFAULT_MESSAGE_TYPE_PROPERTY,
DEFAULT_MESSAGE_TYPE_ENV,
MessageType.XML.toString());
XML.toString());

/**
* Flag to allow deactivation of the http message builder citrus header update. See <a href="https://github.com/citrusframework/citrus/issues/1143">ISSUE-1143</a> for details.
Expand Down
Loading
Loading