io.gatling.mojo.MojoConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of events-gatling-maven-plugin Show documentation
Show all versions of events-gatling-maven-plugin Show documentation
Forked from gatling-maven-plugin 3.1.0, this version has test events integration.
The newest version!
/**
* Copyright 2011-2017 GatlingCorp (http://gatling.io)
*
* 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 io.gatling.mojo;
import java.util.List;
import static java.util.Arrays.asList;
public final class MojoConstants {
private MojoConstants() {
}
// Recorder constants
public static final String RECORDER_MAIN_CLASS = "io.gatling.recorder.GatlingRecorder";
// Compiler constants
public static final String COMPILER_MAIN_CLASS = "io.gatling.compiler.ZincCompiler";
public static final List COMPILER_JVM_ARGS = asList("-Xmx1G", "-Xss100M");
// Gatling constants
public static final String GATLING_MAIN_CLASS = "io.gatling.app.Gatling";
public static final List GATLING_JVM_ARGS = asList(
"-server",
"-Xmx1G",
"-XX:+UseG1GC",
"-XX:+ParallelRefProcEnabled",
"-XX:+HeapDumpOnOutOfMemoryError",
"-XX:MaxInlineLevel=20",
"-XX:MaxTrivialSize=12",
"-XX:-UseBiasedLocking"
);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy