// Copyright 2015 ThoughtWorks, Inc.
// This file is part of Gauge-Java.
// This program is free software.
//
// It is dual-licensed under:
// 1) the GNU General Public License as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version;
// or
// 2) the Eclipse Public License v1.0.
//
// You can redistribute it and/or modify it under the terms of either license.
// We would then provide copied of each license in a separate .txt file with the name of the license as the title of the file.
package com.thoughtworks.gauge;
public class GaugeConstant {
public static final String GAUGE_INTERNAL_PORT = "GAUGE_INTERNAL_PORT";
public static final String GAUGE_API_PORT = "GAUGE_API_PORT";
public static final String GAUGE = "gauge";
public static final String ENV_FLAG = "--env";
public static final String INIT_FLAG = "--init";
public static final String DAEMONIZE_FLAG = "--daemonize";
public static final String SIMPLE_CONSOLE_FLAG = "--simple-console";
public static final String INSTALL_FLAG = "--install";
public static final String STEP_ANNOTATION_QUALIFIER = "com.thoughtworks.gauge.Step";
public static final String GAUGE_DEBUG_OPTS_ENV = "GAUGE_DEBUG_OPTS";
public static final String SCREENSHOT_ENABLED = "screenshot_on_failure";
}