forked from loafle/openapi-generator-original
* stripped parameter enabled for all scala based generators * scala samples updated * docs generators updated * fix scalatra. regenerated by openapi3 script. manually removed enum default value from scalatra example due bug in schema extraction
29 lines
799 B
Groovy
29 lines
799 B
Groovy
plugins {
|
|
id 'com.github.lkishalmi.gatling' version '0.7.1'
|
|
}
|
|
|
|
repositories {
|
|
maven { url "https://repo1.maven.org/maven2" }
|
|
}
|
|
|
|
dependencies {
|
|
|
|
}
|
|
|
|
apply plugin: "com.github.lkishalmi.gatling"
|
|
|
|
gatling {
|
|
toolVersion = '2.3.0'
|
|
jvmArgs = ['-server', '-XX:+UseThreadPriorities',
|
|
'-XX:ThreadPriorityPolicy=42',
|
|
'-Xms2048M', '-Xmx2048M', '-Xmn500M',
|
|
'-XX:+HeapDumpOnOutOfMemoryError',
|
|
'-XX:+AggressiveOpts',
|
|
'-XX:+OptimizeStringConcat',
|
|
'-XX:+UseFastAccessorMethods',
|
|
'-XX:+UseParNewGC',
|
|
'-XX:+UseConcMarkSweepGC',
|
|
'-XX:+CMSParallelRemarkEnabled',
|
|
'-Djava.net.preferIPv4Stack=true',
|
|
'-Djava.net.preferIPv6Addresses=false']
|
|
} |