gatling-maven-plugin wrong java parameters on jenkins?

Hi, I have a problem with maven plugin, when staring it from Jenkins there is a following error:

`

[INFO] **--- maven-surefire-plugin:2.12.4:test (default-test) @ performance ---**
[JENKINS] Recording test results[INFO]
[INFO] **--- gatling-maven-plugin:2.1.7:execute (default) @ performance ---**

Usage: java [-options] class [args...]
           (to execute a class)
   or  java [-options] -jar jarfile [args...]
           (to execute a jar file)
where options include:
    -d32          use a 32-bit data model if available
    -d64          use a 64-bit data model if available
    -server       to select the "server" VM
                  The default VM is server.

    -cp <class search path of directories and zip/jar files>
    -classpath <class search path of directories and zip/jar files>
                  A ; separated list of directories, JAR archives,
                  and ZIP archives to search for class files.
    -D<name>=<value>
                  set a system property
    -verbose:[class|gc|jni]
                  enable verbose output
    -version      print product version and exit
    -version:<value>
                  require the specified version to run
    -showversion  print product version and continue
    -jre-restrict-search | -no-jre-restrict-search
                  include/exclude user private JREs in the version search
    -? -help      print this help message
    -X            print help on non-standard options
    -ea[:<packagename>...|:<classname>]
    -enableassertions[:<packagename>...|:<classname>]
                  enable assertions with specified granularity
    -da[:<packagename>...|:<classname>]
    -disableassertions[:<packagename>...|:<classname>]
                  disable assertions with specified granularity
    -esa | -enablesystemassertions
                  enable system assertions
    -dsa | -disablesystemassertions
                  disable system assertions
    -agentlib:<libname>[=<options>]
                  load native agent library <libname>, e.g. -agentlib:hprof
                  see also, -agentlib:jdwp=help and -agentlib:hprof=help
    -agentpath:<pathname>[=<options>]
                  load native agent library by full pathname
    -javaagent:<jarpath>[=<options>]
                  load Java programming language agent, see java.lang.instrument
    -splash:<imagepath>
                  show splash screen with specified image
See [http://www.oracle.com/technetwork/java/javase/documentation/index.html](http://www.oracle.com/technetwork/java/javase/documentation/index.html) for more details.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 16.994 s
[INFO] Finished at: 2016-03-21T12:48:39+01:00
[INFO] Final Memory: 17M/240M
[INFO] ------------------------------------------------------------------------
Waiting for Jenkins to finish collecting data
[ERROR] Failed to execute goal io.gatling:gatling-maven-plugin:2.1.7:execute (default) on project performance: Gatling failed. Process exited with an error: 1 (Exit value: 1) -> [Help 1]

`

maven plugin configuration

`

io.gatling gatling-maven-plugin ${gatling-plugin.version} test execute true true -Xms1g -Xmx1g

`

Everything works fine on local machine, I’ve also tried to use same Java/Maven versions locally and it also works without any error. Any clue what could be wrong?

Try running with -X to get the maven debug logs and find out what’s wrong with the generated command line.
That’s probably some space that breaks it, like in a path, or in a System property set by Jenkins.

Nothing suspicious in log, it look very similar to local version which works fine (only paths are different), below there is an log from jenkins:

`

Started by user schm
[EnvInject] - Loading node environment variables.
Building in workspace C:\application_build\Jenkins\jobs\Performance-test\workspace
Updating https://svn.corporation.com/svn/repos/application_name/qa/BPS_Performance_test at revision ‘2016-03-25T14:01:57.805 +0100’
At revision 9303
no change for https://svn.corporation.com/svn/repos/application_name/qa/BPS_Performance_test since the previous build
Parsing POMs
[workspace] $ java -cp C:\application_build\Jenkins\plugins\maven-plugin\WEB-INF\lib\maven3-agent-1.5.jar;C:\application_build\maven\apache-maven-3.0.5\boot\plexus-classworlds-2.4.jar org.jvnet.hudson.maven3.agent.Maven3Main C:\application_build\maven\apache-maven-3.0.5 C:\application_build\Jenkins\war\WEB-INF\lib\remoting-2.51.jar C:\application_build\Jenkins\plugins\maven-plugin\WEB-INF\lib\maven3-interceptor-1.5.jar C:\application_build\Jenkins\plugins\maven-plugin\WEB-INF\lib\maven3-interceptor-commons-1.5.jar 53993
<===[JENKINS REMOTING CAPACITY]===>���channel started
Executing Maven: -B -f C:\application_build\Jenkins\jobs\Performance-test\workspace\pom.xml clean test -X -DnoOfRequests=10 -DstartFromReqPerSec=10 -DmaxReqPerSec=10 -DbaseUrl=http://corporation.com
Apache Maven 3.0.5 (r01de14724cdef164cd33c7c8c2fe155faf9602da; 2013-02-19 14:51:28+0100)
Maven home: C:\application_build\maven\apache-maven-3.0.5
Java version: 1.8.0_31, vendor: Oracle Corporation
Java home: C:\jdk1.8.0_31\jre
Default locale: en_US, platform encoding: Cp1252
OS name: “windows server 2008”, version: “6.0”, arch: “amd64”, family: “dos”
[INFO] Error stacktraces are turned on.
[DEBUG] Failed to decrypt password for server nexus: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.decrypt(DefaultSecDispatcher.java:121)
at org.apache.maven.settings.crypto.DefaultSettingsDecrypter.decrypt(DefaultSettingsDecrypter.java:106)
at org.apache.maven.settings.crypto.DefaultSettingsDecrypter.decrypt(DefaultSettingsDecrypter.java:62)
at org.apache.maven.repository.legacy.LegacyRepositorySystem.injectAuthentication(LegacyRepositorySystem.java:554)
at org.apache.maven.execution.DefaultMavenExecutionRequestPopulator.processRepositoriesInSettings(DefaultMavenExecutionRequestPopulator.java:181)
at org.apache.maven.execution.DefaultMavenExecutionRequestPopulator.populateDefaults(DefaultMavenExecutionRequestPopulator.java:267)
at org.apache.maven.cli.DefaultMavenExecutionRequestBuilder.getMavenExecutionRequest(DefaultMavenExecutionRequestBuilder.java:129)
at org.jvnet.hudson.maven3.launcher.Maven3Launcher.getMavenExecutionRequest(Maven3Launcher.java:132)
at org.jvnet.hudson.maven3.launcher.Maven3Launcher.main(Maven3Launcher.java:115)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchStandard(Launcher.java:329)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:239)
at org.jvnet.hudson.maven3.agent.Maven3Main.launch(Maven3Main.java:178)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at hudson.maven.Maven3Builder.call(Maven3Builder.java:136)
at hudson.maven.Maven3Builder.call(Maven3Builder.java:71)
at hudson.remoting.UserRequest.perform(UserRequest.java:121)
at hudson.remoting.UserRequest.perform(UserRequest.java:49)
at hudson.remoting.Request$2.run(Request.java:325)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.read(SecUtil.java:69)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.getSec(DefaultSecDispatcher.java:206)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.decrypt(DefaultSecDispatcher.java:90)
… 29 more
Caused by: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.(FileInputStream.java:138)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.toStream(SecUtil.java:100)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.read(SecUtil.java:56)
… 31 more
[DEBUG] Failed to decrypt password for server nexus: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.decrypt(DefaultSecDispatcher.java:121)
at org.apache.maven.settings.crypto.DefaultSettingsDecrypter.decrypt(DefaultSettingsDecrypter.java:106)
at org.apache.maven.settings.crypto.DefaultSettingsDecrypter.decrypt(DefaultSettingsDecrypter.java:62)
at org.apache.maven.repository.legacy.LegacyRepositorySystem.injectAuthentication(LegacyRepositorySystem.java:554)
at org.apache.maven.execution.DefaultMavenExecutionRequestPopulator.processRepositoriesInSettings(DefaultMavenExecutionRequestPopulator.java:187)
at org.apache.maven.execution.DefaultMavenExecutionRequestPopulator.populateDefaults(DefaultMavenExecutionRequestPopulator.java:267)
at org.apache.maven.cli.DefaultMavenExecutionRequestBuilder.getMavenExecutionRequest(DefaultMavenExecutionRequestBuilder.java:129)
at org.jvnet.hudson.maven3.launcher.Maven3Launcher.getMavenExecutionRequest(Maven3Launcher.java:132)
at org.jvnet.hudson.maven3.launcher.Maven3Launcher.main(Maven3Launcher.java:115)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchStandard(Launcher.java:329)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:239)
at org.jvnet.hudson.maven3.agent.Maven3Main.launch(Maven3Main.java:178)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at hudson.maven.Maven3Builder.call(Maven3Builder.java:136)
at hudson.maven.Maven3Builder.call(Maven3Builder.java:71)
at hudson.remoting.UserRequest.perform(UserRequest.java:121)
at hudson.remoting.UserRequest.perform(UserRequest.java:49)
at hudson.remoting.Request$2.run(Request.java:325)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.read(SecUtil.java:69)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.getSec(DefaultSecDispatcher.java:206)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.decrypt(DefaultSecDispatcher.java:90)
… 29 more
Caused by: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.(FileInputStream.java:138)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.toStream(SecUtil.java:100)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.read(SecUtil.java:56)
… 31 more
[DEBUG] Failed to decrypt password for server nexus: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.decrypt(DefaultSecDispatcher.java:121)
at org.apache.maven.settings.crypto.DefaultSettingsDecrypter.decrypt(DefaultSettingsDecrypter.java:106)
at org.apache.maven.settings.crypto.DefaultSettingsDecrypter.decrypt(DefaultSettingsDecrypter.java:62)
at org.apache.maven.repository.legacy.LegacyRepositorySystem.injectAuthentication(LegacyRepositorySystem.java:554)
at org.apache.maven.execution.DefaultMavenExecutionRequestPopulator.processRepositoriesInSettings(DefaultMavenExecutionRequestPopulator.java:181)
at org.apache.maven.execution.DefaultMavenExecutionRequestPopulator.populateDefaults(DefaultMavenExecutionRequestPopulator.java:267)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.jvnet.hudson.maven3.launcher.Maven3Launcher.main(Maven3Launcher.java:117)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchStandard(Launcher.java:329)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:239)
at org.jvnet.hudson.maven3.agent.Maven3Main.launch(Maven3Main.java:178)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at hudson.maven.Maven3Builder.call(Maven3Builder.java:136)
at hudson.maven.Maven3Builder.call(Maven3Builder.java:71)
at hudson.remoting.UserRequest.perform(UserRequest.java:121)
at hudson.remoting.UserRequest.perform(UserRequest.java:49)
at hudson.remoting.Request$2.run(Request.java:325)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.read(SecUtil.java:69)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.getSec(DefaultSecDispatcher.java:206)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.decrypt(DefaultSecDispatcher.java:90)
… 28 more
Caused by: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.(FileInputStream.java:138)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.toStream(SecUtil.java:100)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.read(SecUtil.java:56)
… 30 more
[DEBUG] Failed to decrypt password for server nexus: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.decrypt(DefaultSecDispatcher.java:121)
at org.apache.maven.settings.crypto.DefaultSettingsDecrypter.decrypt(DefaultSettingsDecrypter.java:106)
at org.apache.maven.settings.crypto.DefaultSettingsDecrypter.decrypt(DefaultSettingsDecrypter.java:62)
at org.apache.maven.repository.legacy.LegacyRepositorySystem.injectAuthentication(LegacyRepositorySystem.java:554)
at org.apache.maven.execution.DefaultMavenExecutionRequestPopulator.processRepositoriesInSettings(DefaultMavenExecutionRequestPopulator.java:181)
at org.apache.maven.execution.DefaultMavenExecutionRequestPopulator.populateDefaults(DefaultMavenExecutionRequestPopulator.java:267)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.jvnet.hudson.maven3.launcher.Maven3Launcher.main(Maven3Launcher.java:117)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchStandard(Launcher.java:329)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:239)
at org.jvnet.hudson.maven3.agent.Maven3Main.launch(Maven3Main.java:178)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at hudson.maven.Maven3Builder.call(Maven3Builder.java:136)
at hudson.maven.Maven3Builder.call(Maven3Builder.java:71)
at hudson.remoting.UserRequest.perform(UserRequest.java:121)
at hudson.remoting.UserRequest.perform(UserRequest.java:49)
at hudson.remoting.Request$2.run(Request.java:325)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.read(SecUtil.java:69)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.getSec(DefaultSecDispatcher.java:206)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.decrypt(DefaultSecDispatcher.java:90)
… 28 more
Caused by: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.(FileInputStream.java:138)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.toStream(SecUtil.java:100)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.read(SecUtil.java:56)
… 30 more
[DEBUG] Failed to decrypt password for server nexus: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.decrypt(DefaultSecDispatcher.java:121)
at org.apache.maven.settings.crypto.DefaultSettingsDecrypter.decrypt(DefaultSettingsDecrypter.java:106)
at org.apache.maven.settings.crypto.DefaultSettingsDecrypter.decrypt(DefaultSettingsDecrypter.java:62)
at org.apache.maven.repository.legacy.LegacyRepositorySystem.injectAuthentication(LegacyRepositorySystem.java:554)
at org.apache.maven.execution.DefaultMavenExecutionRequestPopulator.processRepositoriesInSettings(DefaultMavenExecutionRequestPopulator.java:187)
at org.apache.maven.execution.DefaultMavenExecutionRequestPopulator.populateDefaults(DefaultMavenExecutionRequestPopulator.java:267)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.jvnet.hudson.maven3.launcher.Maven3Launcher.main(Maven3Launcher.java:117)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchStandard(Launcher.java:329)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:239)
at org.jvnet.hudson.maven3.agent.Maven3Main.launch(Maven3Main.java:178)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at hudson.maven.Maven3Builder.call(Maven3Builder.java:136)
at hudson.maven.Maven3Builder.call(Maven3Builder.java:71)
at hudson.remoting.UserRequest.perform(UserRequest.java:121)
at hudson.remoting.UserRequest.perform(UserRequest.java:49)
at hudson.remoting.Request$2.run(Request.java:325)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.read(SecUtil.java:69)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.getSec(DefaultSecDispatcher.java:206)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.decrypt(DefaultSecDispatcher.java:90)
… 28 more
Caused by: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.(FileInputStream.java:138)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.toStream(SecUtil.java:100)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.read(SecUtil.java:56)
… 30 more
[DEBUG] Failed to decrypt password for server nexus: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.decrypt(DefaultSecDispatcher.java:121)
at org.apache.maven.settings.crypto.DefaultSettingsDecrypter.decrypt(DefaultSettingsDecrypter.java:106)
at org.apache.maven.settings.crypto.DefaultSettingsDecrypter.decrypt(DefaultSettingsDecrypter.java:62)
at org.apache.maven.repository.legacy.LegacyRepositorySystem.injectAuthentication(LegacyRepositorySystem.java:554)
at org.apache.maven.execution.DefaultMavenExecutionRequestPopulator.processRepositoriesInSettings(DefaultMavenExecutionRequestPopulator.java:187)
at org.apache.maven.execution.DefaultMavenExecutionRequestPopulator.populateDefaults(DefaultMavenExecutionRequestPopulator.java:267)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.jvnet.hudson.maven3.launcher.Maven3Launcher.main(Maven3Launcher.java:117)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchStandard(Launcher.java:329)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:239)
at org.jvnet.hudson.maven3.agent.Maven3Main.launch(Maven3Main.java:178)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at hudson.maven.Maven3Builder.call(Maven3Builder.java:136)
at hudson.maven.Maven3Builder.call(Maven3Builder.java:71)
at hudson.remoting.UserRequest.perform(UserRequest.java:121)
at hudson.remoting.UserRequest.perform(UserRequest.java:49)
at hudson.remoting.Request$2.run(Request.java:325)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.read(SecUtil.java:69)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.getSec(DefaultSecDispatcher.java:206)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.decrypt(DefaultSecDispatcher.java:90)
… 28 more
Caused by: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.(FileInputStream.java:138)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.toStream(SecUtil.java:100)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.read(SecUtil.java:56)
… 30 more
[DEBUG] Using local repository at C:\Users\application_build.m2\repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10 for C:\Users\application_build.m2\repository
[DEBUG] Failed to decrypt password for server nexus: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.decrypt(DefaultSecDispatcher.java:121)
at org.apache.maven.settings.crypto.DefaultSettingsDecrypter.decrypt(DefaultSettingsDecrypter.java:106)
at org.apache.maven.settings.crypto.DefaultSettingsDecrypter.decrypt(DefaultSettingsDecrypter.java:62)
at org.apache.maven.DefaultMaven.newRepositorySession(DefaultMaven.java:381)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:208)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.jvnet.hudson.maven3.launcher.Maven3Launcher.main(Maven3Launcher.java:117)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchStandard(Launcher.java:329)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:239)
at org.jvnet.hudson.maven3.agent.Maven3Main.launch(Maven3Main.java:178)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at hudson.maven.Maven3Builder.call(Maven3Builder.java:136)
at hudson.maven.Maven3Builder.call(Maven3Builder.java:71)
at hudson.remoting.UserRequest.perform(UserRequest.java:121)
at hudson.remoting.UserRequest.perform(UserRequest.java:49)
at hudson.remoting.Request$2.run(Request.java:325)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: org.sonatype.plexus.components.sec.dispatcher.SecDispatcherException: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.read(SecUtil.java:69)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.getSec(DefaultSecDispatcher.java:206)
at org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher.decrypt(DefaultSecDispatcher.java:90)
… 27 more
Caused by: java.io.FileNotFoundException: C:\Users\application_build.m2\settings-security.xml (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.(FileInputStream.java:138)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.toStream(SecUtil.java:100)
at org.sonatype.plexus.components.sec.dispatcher.SecUtil.read(SecUtil.java:56)
… 29 more
[INFO] Scanning for projects…
[DEBUG] Extension realms for project com.corporation.application_name.test:performance:jar:1.0.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: com.corporation.application_name.test:performance:jar:1.0.0-SNAPSHOT
[DEBUG] Tasks: [clean, test]
[DEBUG] Style: Regular
[DEBUG] =======================================================================
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building application_name :: Performance Testing 1.0.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[DEBUG] Lifecycle default → [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean → [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site → [pre-site, site, post-site, site-deploy]
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for scala-tools.org (http://scala-tools.org/repo-releases).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for jboss.releases (http://repository.jboss.org/maven2).
[DEBUG] Lifecycle default → [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean → [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site → [pre-site, site, post-site, site-deploy]
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots).
[DEBUG] Lifecycle default → [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean → [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site → [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default → [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean → [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site → [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default → [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean → [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site → [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default → [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean → [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site → [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default → [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean → [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site → [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default → [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean → [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site → [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project: com.corporation.application_name.test:performance:1.0.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile, test]
[DEBUG] Repositories (dependencies): [nexus (http://jenkinsrepo/repository/maven-public/, releases)]
[DEBUG] Repositories (plugins) : [nexus (http://jenkinsrepo/repository/maven-public/, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-clean-plugin:2.4.1:clean (default-clean)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>


${clean.excludeDefaultDirectories}
${maven.clean.failOnError}
${clean.followSymLinks}


${clean.skip}

${clean.verbose}

[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.5:resources (default-resources)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>


${encoding}
${maven.resources.escapeString}
${maven.resources.escapeWindowsPaths}
${maven.resources.includeEmptyDirs}

${maven.resources.overwrite}



${maven.resources.supportMultiLineFiltering}



[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>





${maven.compiler.compilerId}
${maven.compiler.compilerVersion}
${maven.compiler.debug}
${maven.compiler.debuglevel}
${encoding}
${maven.compiler.executable}
${maven.compiler.failOnError}
${maven.compiler.fork}

${maven.compiler.maxmem}
${maven.compiler.meminitial}
${maven.compiler.optimize}

${project.build.finalName}


${maven.compiler.showDeprecation}
${maven.compiler.showWarnings}

${maven.compiler.source} ${lastModGranularityMs} ${maven.compiler.target} ${maven.compiler.verbose} [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.scala-tools:maven-scala-plugin:2.15.2:compile (default) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> ${maven.scala.checkConsistency} ${displayCmd} -Xms64m -Xmx1024m ${localRepository} ${localRepository} ${notifyCompilation} ${project.build.outputDirectory} ${project} ${recompilation-mode} ${project.remoteArtifactRepositories} ${maven.scala.className} ${scala.version} src/main/java [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.5:testResources (default-testResources) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> ${encoding} ${maven.resources.escapeString} ${maven.resources.escapeWindowsPaths} ${maven.resources.includeEmptyDirs} ${project.build.testOutputDirectory} ${maven.resources.overwrite} ${project.testResources} ${maven.resources.supportMultiLineFiltering} [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> ${maven.compiler.compilerId} ${maven.compiler.compilerVersion} ${maven.compiler.debug} ${maven.compiler.debuglevel} ${encoding} ${maven.compiler.executable} ${maven.compiler.failOnError} ${maven.compiler.fork} ${maven.compiler.maxmem} ${maven.compiler.meminitial} ${maven.compiler.optimize} ${project.build.finalName} ${maven.compiler.showDeprecation} ${maven.compiler.showWarnings} ${maven.test.skip} ${maven.compiler.source} ${lastModGranularityMs} ${maven.compiler.target} ${maven.compiler.testSource} ${maven.compiler.testTarget} ${maven.compiler.verbose} [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.scala-tools:maven-scala-plugin:2.15.2:testCompile (default) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> ${maven.scala.checkConsistency} ${displayCmd} -Xms64m -Xmx1024m ${localRepository} ${localRepository} ${notifyCompilation} ${project} ${recompilation-mode} ${project.remoteArtifactRepositories} ${maven.scala.className} ${scala.version} ${maven.test.skip} ${project.build.testOutputDirectory} ${project.build.testSourceDirectory}/../scala [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-surefire-plugin:2.10:test (default-test) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> ${argLine} ${childDelegation} ${maven.surefire.debug} ${disableXmlReport} ${enableAssertions} ${excludedGroups} ${failIfNoTests} ${forkMode} ${surefire.timeout} ${groups} ${junitArtifactName} ${jvm} ${localRepository} ${objectFactory} ${parallel} ${perCoreThreadCount} ${plugin.artifactMap} ${surefire.printSummary} ${project.artifactMap} ${maven.test.redirectTestOutputToFile} ${project.pluginArtifactRepositories} ${surefire.reportFormat} ${surefire.reportNameSuffix} ${session} ${maven.test.skip} ${maven.test.skip.exec} ${skipTests} ${test} ${maven.test.failure.ignore} ${testNGArtifactName} ${threadCount} ${trimStackTrace} ${surefire.useFile} ${surefire.useManifestOnlyJar} ${surefire.useSystemClassLoader} ${useUnlimitedThreads} ${basedir} [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: io.gatling:gatling-maven-plugin:2.1.7:execute (default) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> ${gatling.bodiesFolder} ${gatling.configFolder} ${gatling.dataFolder} true ${gatling.failOnError} -Xms1g -Xmx1g${gatling.jvmArgs} ${gatling.noReports} ${gatling.outputName} ${gatling.propagateSystemProperties} ${gatling.reportsOnly} ${gatling.resultsFolder} true ${gatling.simulationClass} ${gatling.simulationsFolder} ${gatling.skip} ${gatling.zincJvmArgs} [DEBUG] ======================================================================= [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for maven.java.net (https://maven.java.net/content/repositories/releases). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for maven.java.net (https://maven.java.net/content/repositories/releases). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for maven.java.net (https://maven.java.net/content/repositories/releases). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache-snapshots (http://people.apache.org/repo/m2-snapshot-repository). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache-incubator (http://people.apache.org/repo/m2-incubating-repository/). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for codehaus-snapshots (http://snapshots.repository.codehaus.org). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache-snapshots (http://people.apache.org/repo/m2-snapshot-repository). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache-incubator (http://people.apache.org/repo/m2-incubating-repository/). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for codehaus-snapshots (http://snapshots.repository.codehaus.org). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] com.corporation.application_name.test:performance:jar:1.0.0-SNAPSHOT [DEBUG] org.scala-lang:scala-library:jar:2.11.8:compile [DEBUG] io.gatling.highcharts:gatling-charts-highcharts:jar:2.1.7:test [DEBUG] io.gatling:gatling-charts:jar:2.1.7:test [DEBUG] io.gatling:gatling-core:jar:2.1.7:test [DEBUG] org.scala-lang:scala-reflect:jar:2.11.7:test [DEBUG] com.typesafe.akka:akka-actor_2.11:jar:2.3.12:test [DEBUG] com.typesafe:config:jar:1.2.1:test [DEBUG] com.dongxiguo:fastring_2.11:jar:0.2.4:test [DEBUG] net.sf.opencsv:opencsv:jar:2.3:test [DEBUG] com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test [DEBUG] org.threeten:threetenbp:jar:1.2:test [DEBUG] org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.4:test [DEBUG] com.ning:async-http-client:jar:1.9.30:test [DEBUG] org.slf4j:slf4j-api:jar:1.7.12:test [DEBUG] com.typesafe.scala-logging:scala-logging_2.11:jar:3.1.0:test [DEBUG] ch.qos.logback:logback-classic:jar:1.1.3:test [DEBUG] ch.qos.logback:logback-core:jar:1.1.3:test [DEBUG] io.gatling:jsonpath_2.11:jar:0.6.4:test [DEBUG] io.fastjson:boon:jar:0.33:test [DEBUG] net.sf.saxon:Saxon-HE:jar:9.6.0-5:test [DEBUG] org.jodd:jodd-lagarto:jar:3.6.6:test [DEBUG] org.jodd:jodd-core:jar:3.6.6:test [DEBUG] org.jodd:jodd-log:jar:3.6.6:test [DEBUG] com.tdunning:t-digest:jar:3.0:test [DEBUG] io.gatling:gatling-app:jar:2.1.7:test [DEBUG] io.gatling:gatling-http:jar:2.1.7:test [DEBUG] io.netty:netty:jar:3.10.4.Final:test [DEBUG] com.jcraft:jzlib:jar:1.1.3:test [DEBUG] org.scala-lang.modules:scala-xml_2.11:jar:1.0.4:test [DEBUG] io.gatling:gatling-jms:jar:2.1.7:test [DEBUG] org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:test [DEBUG] io.gatling:gatling-jdbc:jar:2.1.7:test [DEBUG] io.gatling:gatling-redis:jar:2.1.7:test [DEBUG] net.debasishg:redisclient_2.11:jar:2.14:test [DEBUG] commons-pool:commons-pool:jar:1.6:test [DEBUG] io.gatling:gatling-metrics:jar:2.1.7:test [DEBUG] com.github.scopt:scopt_2.11:jar:3.3.0:test [DEBUG] io.gatling:gatling-recorder:jar:2.1.7:test [DEBUG] org.scala-lang.modules:scala-swing_2.11:jar:1.0.2:test [DEBUG] com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test [DEBUG] com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test [DEBUG] com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test [DEBUG] org.bouncycastle:bcpkix-jdk15on:jar:1.52:test [DEBUG] org.bouncycastle:bcprov-jdk15on:jar:1.52:test [INFO] [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ performance --- [DEBUG] Created new class realm maven.api [DEBUG] Importing foreign packages into class realm maven.api [DEBUG] Imported: org.apache.maven.cli < plexus.core [DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core [DEBUG] Imported: org.apache.maven.lifecycle < plexus.core [DEBUG] Imported: org.apache.maven.repository < plexus.core [DEBUG] Imported: org.codehaus.plexus.personality < plexus.core [DEBUG] Imported: org.apache.maven.usability < plexus.core [DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core [DEBUG] Imported: org.sonatype.aether.version < plexus.core [DEBUG] Imported: org.sonatype.aether.* < plexus.core [DEBUG] Imported: org.sonatype.aether.artifact < plexus.core [DEBUG] Imported: org.apache.maven.* < plexus.core [DEBUG] Imported: org.apache.maven.project < plexus.core [DEBUG] Imported: org.sonatype.aether.repository < plexus.core [DEBUG] Imported: org.sonatype.aether.impl < plexus.core [DEBUG] Imported: org.apache.maven.exception < plexus.core [DEBUG] Imported: org.apache.maven.plugin < plexus.core [DEBUG] Imported: org.sonatype.aether.collection < plexus.core [DEBUG] Imported: org.codehaus.plexus.* < plexus.core [DEBUG] Imported: org.codehaus.plexus.logging < plexus.core [DEBUG] Imported: org.apache.maven.profiles < plexus.core [DEBUG] Imported: org.sonatype.aether.metadata < plexus.core [DEBUG] Imported: org.sonatype.aether.spi < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core [DEBUG] Imported: org.apache.maven.wagon.* < plexus.core [DEBUG] Imported: org.sonatype.aether.graph < plexus.core [DEBUG] Imported: org.apache.maven.rtinfo < plexus.core [DEBUG] Imported: org.sonatype.aether.installation < plexus.core [DEBUG] Imported: org.apache.maven.monitor < plexus.core [DEBUG] Imported: org.sonatype.aether.transfer < plexus.core [DEBUG] Imported: org.codehaus.plexus.context < plexus.core [DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core [DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core [DEBUG] Imported: org.sonatype.aether.deployment < plexus.core [DEBUG] Imported: org.apache.maven.model < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core [DEBUG] Imported: org.apache.maven.artifact < plexus.core [DEBUG] Imported: org.apache.maven.toolchain < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core [DEBUG] Imported: org.apache.maven.settings < plexus.core [DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core [DEBUG] Imported: org.apache.maven.wagon.events < plexus.core [DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core [DEBUG] Imported: org.apache.maven.reporting < plexus.core [DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core [DEBUG] Imported: org.apache.maven.configuration < plexus.core [DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core [DEBUG] Imported: org.codehaus.classworlds < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core [DEBUG] Imported: org.apache.maven.classrealm < plexus.core [DEBUG] Imported: org.sonatype.aether.resolution < plexus.core [DEBUG] Imported: org.apache.maven.execution < plexus.core [DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core [DEBUG] Imported: org.codehaus.plexus.container < plexus.core [DEBUG] Imported: org.codehaus.plexus.component < plexus.core [DEBUG] Populating class realm maven.api [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2). [DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:2.4.1: [DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.5:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.4.1 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.4.1 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.4.1 [DEBUG] Included: org.apache.maven.plugins:maven-clean-plugin:jar:2.4.1 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.5 [DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6 [DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.4.1:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.4.1, parent: sun.misc.Launcher$AppClassLoader@5c647e05] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.4.1:clean' with basic configurator --> [DEBUG] (f) directory = C:\application_build\Jenkins\jobs\Performance-test\workspace\target [DEBUG] (f) excludeDefaultDirectories = false [DEBUG] (f) failOnError = true [DEBUG] (f) followSymLinks = false [DEBUG] (f) outputDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace\target\classes [DEBUG] (f) reportDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace\target\site [DEBUG] (f) skip = false [DEBUG] (f) testOutputDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes [DEBUG] -- end configuration -- [INFO] Deleting C:\application_build\Jenkins\jobs\Performance-test\workspace\target [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes.timestamp [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\template\transaction.xml [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\template\checkFrauds.xml [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\template [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\logback-test.xml [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\gatling.conf [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\data\transaction.csv [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\data\customer.csv [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\data\checkFrauds.csv [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\data [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\SimulationParams.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\SimulationParams$class.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\Randoms.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\Randoms$.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\Randoms$$anon$1.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\Predef.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\Predef$.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\MapConvertable.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\MapConvertable$class.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\MapConvertable$$anonfun$com$corporation$application_name$test$performance$sharedkernel$MapConvertable$$setFields$2.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\MapConvertable$$anonfun$com$corporation$application_name$test$performance$sharedkernel$MapConvertable$$setFields$1.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\MapConvertable$$anonfun$1.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\MapConvertable$$anon$1.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\Feeders.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\Feeders$class.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\Feeders$$anonfun$feeder$1.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\Feeders$$anonfun$datasource$1.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\DataSource.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\DataSource$$anonfun$feeder$1.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel\DataSource$$anon$1.class [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\sharedkernel [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\scenario\FillInWithTransactionsCsvSimulation.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\scenario\CheckFraudExistenceCsvSimulation.class [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\scenario [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain\Transaction.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain\Transaction$.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain\Transaction$$anonfun$csv$1.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain\Model.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain\Model$class.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain\Model$$anonfun$toMap$1.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain\Model$$anonfun$toMap$1$$anonfun$apply$1.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain\Customer.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain\Customer$.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain\Customer$$anonfun$csv$1.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain\CheckFraudRequest.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain\CheckFraudRequest$.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain\CheckFraudRequest$$anonfun$csv$1.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain\Authenticable.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain\Authenticable$class.class [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\domain [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\application\FillInWithTransactions.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\application\FillInWithTransactions$.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\application\FillInWithTransactions$$anonfun$buildAction$1.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\application\CheckFraudExistence.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\application\CheckFraudExistence$.class [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\application\CheckFraudExistence$$anonfun$buildAction$1.class [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance\application [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test\performance [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name\test [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation\application_name [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com\corporation [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\com [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\application.conf [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\maven-status\maven-compiler-plugin\testCompile\default-testCompile\inputFiles.lst [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\maven-status\maven-compiler-plugin\testCompile\default-testCompile [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\maven-status\maven-compiler-plugin\testCompile [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\maven-status\maven-compiler-plugin [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\maven-status [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\gatling\results [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\gatling [INFO] Deleting file C:\application_build\Jenkins\jobs\Performance-test\workspace\target\classes\assembly.xml [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\classes [INFO] Deleting directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target [DEBUG] Skipping non-existing directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\classes [DEBUG] Skipping non-existing directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes [DEBUG] Skipping non-existing directory C:\application_build\Jenkins\jobs\Performance-test\workspace\target\site [INFO] [INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ performance --- [DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:2.5: [DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-core:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile [DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile [DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile [DEBUG] commons-cli:commons-cli:jar:1.0:compile [DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile [DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile [DEBUG] classworlds:classworlds:jar:1.1:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-monitor:jar:2.0.6:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:3.8.1:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.5:compile [DEBUG] org.apache.maven.shared:maven-filtering:jar:1.0:compile [DEBUG] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.13:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.5 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.5 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.5 [DEBUG] Included: org.apache.maven.plugins:maven-resources-plugin:jar:2.5 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6 [DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7 [DEBUG] Included: commons-cli:commons-cli:jar:1.0 [DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4 [DEBUG] Included: junit:junit:jar:3.8.1 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.5 [DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:1.0 [DEBUG] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.13 [DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-core:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.6 [DEBUG] Excluded: classworlds:classworlds:jar:1.1 [DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.0.6 [DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1 [DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.5:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.5, parent: sun.misc.Launcher$AppClassLoader@5c647e05] [debug] execute contextualize [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.5:resources' with basic configurator --> [DEBUG] (f) buildFilters = [] [DEBUG] (f) encoding = UTF-8 [DEBUG] (f) escapeWindowsPaths = true [DEBUG] (s) includeEmptyDirs = false [DEBUG] (s) outputDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace\target\classes [DEBUG] (s) overwrite = false [DEBUG] (f) project = MavenProject: com.corporation.application_name.test:performance:1.0.0-SNAPSHOT @ C:\application_build\Jenkins\jobs\Performance-test\workspace\pom.xml [DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\application_build\Jenkins\jobs\Performance-test\workspace\src\main\resources, PatternSet [includes: {}, excludes: {}]}}] [DEBUG] (f) session = org.apache.maven.execution.MavenSession@7e4f101b [DEBUG] (f) supportMultiLineFiltering = false [DEBUG] (f) useBuildFilters = true [DEBUG] (s) useDefaultDelimiters = true [DEBUG] -- end configuration -- [DEBUG] properties used {PROCESSOR_ARCHITECTURE=AMD64, file.encoding.pkg=sun.io, TRACE_FORMAT_SEARCH_PATH=\\winseqfe\release\Windows6.0\lh_sp2rtm\6002.18005.090410-1830\amd64fre\symbols.pri\TraceFormat, ProgramData=C:\ProgramData, java.home=C:\jdk1.8.0_31\jre, ROOT_BUILD_CAUSE=MANUALTRIGGER, env.DFSTRACINGON=FALSE, NODE_NAME=master, JENKINS_URL=http://jenkins:8080/, DFSTRACINGON=FALSE, ALLUSERSPROFILE=C:\ProgramData, java.endorsed.dirs=C:\jdk1.8.0_31\jre\lib\endorsed, env.POM_VERSION=1.0.0-SNAPSHOT, env.USERNAME=application_build, env.HUDSON_HOME=C:\application_build\Jenkins, PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\;c:\Program Files\Microsoft Security Client\MpProvider\, USERDOMAIN=corporation, sun.os.patch.level=Service Pack 2, java.vendor.url=http://java.oracle.com/, env.COMPUTERNAME=jenkins, CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files, env.NODE_NAME=master, java.version=1.8.0_31, JOB_NAME=Performance-test, COMPUTERNAME=jenkins, env.NODE_LABELS=master, env.JENKINS_SERVER_COOKIE=de932d231d56f900, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, PUBLIC=C:\Users\Public, env.USERPROFILE=C:\Users\application_build, env.SVN_REVISION=9232, env.SERVICE_ID=jenkins, BUILD_CAUSE=MANUALTRIGGER, user.name=application_build, SVN_REVISION=9232, sun.io.unicode.encoding=UnicodeLittle, sun.jnu.encoding=Cp1252, java.runtime.name=Java(TM) SE Runtime Environment, env.ROOT_BUILD_CAUSE_MANUALTRIGGER=true, windir=C:\Windows, env.LOCALAPPDATA=C:\Users\application_build\AppData\Local, PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 44 Stepping 2, GenuineIntel, java.specification.name=Java Platform API Specification, LOCALAPPDATA=C:\Users\application_build\AppData\Local, user.timezone=Europe/Belgrade, user.script=, path.separator=;, BUILD_TAG=jenkins-Performance-test-12, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 44 Stepping 2, GenuineIntel, gatling-plugin.version=2.1.7, file.encoding=Cp1252, PATH=C:\ProgramData\Oracle\Java\javapath;C:\oracle\product\11.2.0\dbhome_1\bin;c:\oracle\product\11.2.0\dbhome_1\OPatch;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Windows Imaging\;C:\jdk1.8.0_31\bin\;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\application_build\maven\apache-maven-3.0.5\bin;C:\Program Files\SlikSvn\bin;C:\Program Files\TortoiseSVN\bin, env.ORACLE_HOME=c:\oracle\product\11.2.0\dbhome_1\, sun.java.command=org.jvnet.hudson.maven3.agent.Maven3Main C:\application_build\maven\apache-maven-3.0.5 C:\application_build\Jenkins\war\WEB-INF\lib\remoting-2.51.jar C:\application_build\Jenkins\plugins\maven-plugin\WEB-INF\lib\maven3-interceptor-1.5.jar C:\application_build\Jenkins\plugins\maven-plugin\WEB-INF\lib\maven3-interceptor-commons-1.5.jar 53993, HUDSON_URL=http://jenkins:8080/, JENKINS_SERVER_COOKIE=de932d231d56f900, env.APPDATA=C:\Users\application_build\AppData\Roaming, env.SVN_REVISION_1=9232, EXECUTOR_NUMBER=1, env.WINDIR=C:\Windows, env.BUILD_TAG=jenkins-Performance-test-12, env.ROOT_BUILD_CAUSE=MANUALTRIGGER, scala.version=2.11.8, BASE=C:\application_build\Jenkins, server=2, java.io.tmpdir=C:\Users\application_build\AppData\Local\Temp\, APPDATA=C:\Users\application_build\AppData\Roaming, user.language=en, line.separator= , BUILD_URL=http://jenkins:8080/job/Performance-test/12/, M2_REPO=, M2_HOME=C:\application_build\maven\apache-maven-3.0.5, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maxReqPerSec=10, env.JOB_NAME=Performance-test, java.vm.info=mixed mode, env.BUILD_DISPLAY_NAME=#12, sun.desktop=windows, java.vm.specification.name=Java Virtual Machine Specification, BUILD_DISPLAY_NAME=#12, OS=Windows_NT, env.BUILD_URL=http://jenkins:8080/job/Performance-test/12/, env.M2_HOME=C:\application_build\maven\apache-maven-3.0.5, protocol=http, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, guice.disable.misplaced.annotation.check=true, env.NOOFREQUESTS=10, SVN_REVISION_1=9232, env.SERVER=2, gatling.version=2.1.7, HUDSON_SERVER_COOKIE=de932d231d56f900, env.BUILD_CAUSE_MANUALTRIGGER=true, env.POM_ARTIFACTID=performance, MAVEN_HOME=C:\application_build\maven\apache-maven-3.0.5, env.PSMODULEPATH=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\;c:\Program Files\Microsoft Security Client\MpProvider\, PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.awt.printerjob=sun.awt.windows.WPrinterJob, maven3.interceptor.common=C:\application_build\Jenkins\plugins\maven-plugin\WEB-INF\lib\maven3-interceptor-commons-1.5.jar, CLASSPATH=, env.HUDSON_SERVER_COOKIE=de932d231d56f900, startFromReqPerSec=10, env.PUBLIC=C:\Users\Public, env.USERDOMAIN=corporation, noOfRequests=10, baseUrl=http://corporation.com, env.PROCESSOR_LEVEL=6, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.BUILD_NUMBER=12, os.name=Windows Server 2008, java.specification.vendor=Oracle Corporation, FP_NO_HOST_CHECK=NO, env.TMP=C:\Users\application_build\AppData\Local\Temp, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, BUILD_NUMBER=12, env.JOB_URL=http://jenkins:8080/job/Performance-test/, env.OS=Windows_NT, maven3.interceptor=C:\application_build\Jenkins\plugins\maven-plugin\WEB-INF\lib\maven3-interceptor-1.5.jar, java.library.path=C:\jdk1.8.0_31\jre\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\application_build\maven\apache-maven-3.0.5/bin;C:\ProgramData\Oracle\Java\javapath;C:\oracle\product\11.2.0\dbhome_1\bin;c:\oracle\product\11.2.0\dbhome_1\OPatch;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Windows Imaging\;C:\jdk1.8.0_31\bin\;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\application_build\maven\apache-maven-3.0.5\bin;C:\Program Files\SlikSvn\bin;C:\Program Files\TortoiseSVN\bin;., env.TRACE_FORMAT_SEARCH_PATH=\\winseqfe\release\Windows6.0\lh_sp2rtm\6002.18005.090410-1830\amd64fre\symbols.pri\TraceFormat, env.PATH=C:\application_build\maven\apache-maven-3.0.5/bin;C:\ProgramData\Oracle\Java\javapath;C:\oracle\product\11.2.0\dbhome_1\bin;c:\oracle\product\11.2.0\dbhome_1\OPatch;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Windows Imaging\;C:\jdk1.8.0_31\bin\;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\application_build\maven\apache-maven-3.0.5\bin;C:\Program Files\SlikSvn\bin;C:\Program Files\TortoiseSVN\bin, env.HUDSON_URL=http://jenkins:8080/, WINSW_EXECUTABLE=C:\application_build\Jenkins\jenkins.exe, env.JENKINS_URL=http://jenkins:8080/, POM_GROUPID=com.corporation.application_name.test, POM_ARTIFACTID=performance, java.class.version=52.0, JOB_URL=http://jenkins:8080/job/Performance-test/, env.BUILD_CAUSE=MANUALTRIGGER, env.PROTOCOL=http, env.JENKINS_HOME=C:\application_build\Jenkins, env.BASE=C:\application_build\Jenkins, env.SYSTEMROOT=C:\Windows, env.COMSPEC=C:\Windows\system32\cmd.exe, JENKINS_HOME=C:\application_build\Jenkins, BUILD_ID=12, TEMP=C:\Users\application_build\AppData\Local\Temp, sun.boot.library.path=C:\jdk1.8.0_31\jre\bin, project.build.sourceEncoding=UTF-8, env.SYSTEMDRIVE=C:, M2=C:\application_build\maven\apache-maven-3.0.5\bin, env.PROCESSOR_REVISION=2c02, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.POM_DISPLAYNAME=application_name :: Performance Testing, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, user.variant=, PROCESSOR_REVISION=2c02, POM_VERSION=1.0.0-SNAPSHOT, HUDSON_HOME=C:\application_build\Jenkins, ProgramFiles(x86)=C:\Program Files (x86), PATH+MAVEN=C:\application_build\maven\apache-maven-3.0.5/bin, BUILD_CAUSE_MANUALTRIGGER=true, env.PROGRAMFILES=C:\Program Files, java.vm.specification.version=1.8, JAVA_HOME=C:\jdk1.8.0_31, env.PROGRAMDATA=C:\ProgramData, awt.toolkit=sun.awt.windows.WToolkit, NODE_LABELS=master, env.MAVEN_HOME=C:\application_build\maven\apache-maven-3.0.5, sun.cpu.isalist=amd64, USERPROFILE=C:\Users\application_build, java.ext.dirs=C:\jdk1.8.0_31\jre\lib\ext;C:\Windows\Sun\Java\lib\ext, os.version=6.0, user.home=C:\Users\application_build, USERNAME=application_build, java.vm.vendor=Oracle Corporation, PROCESSOR_LEVEL=6, env.JAVA_HOME=C:\jdk1.8.0_31, user.dir=C:\application_build\Jenkins\jobs\Performance-test\workspace, SVN_URL=https://svn.corporation.com/svn/repos/application_name/qa/BPS_Performance_test, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.M2=C:\application_build\maven\apache-maven-3.0.5\bin, TMP=C:\Users\application_build\AppData\Local\Temp, env.FP_NO_HOST_CHECK=NO, UATDATA=C:\Windows\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, sun.cpu.endian=little, env.ALLUSERSPROFILE=C:\ProgramData, SystemDrive=C:, env.SVN_URL=https://svn.corporation.com/svn/repos/application_name/qa/BPS_Performance_test, env.WINSW_EXECUTABLE=C:\application_build\Jenkins\jenkins.exe, env.PROCESSOR_ARCHITECTURE=AMD64, java.vm.version=25.31-b07, ORACLE_HOME=c:\oracle\product\11.2.0\dbhome_1\, java.class.path=C:\application_build\Jenkins\plugins\maven-plugin\WEB-INF\lib\maven3-agent-1.5.jar;C:\application_build\maven\apache-maven-3.0.5\boot\plexus-classworlds-2.4.jar, env.UATDATA=C:\Windows\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, os.arch=amd64, WORKSPACE=C:\application_build\Jenkins\jobs\Performance-test\workspace, ComSpec=C:\Windows\system32\cmd.exe, env.POM_PACKAGING=jar, sun.java.launcher=SUN_STANDARD, SERVICE_ID=jenkins, SystemRoot=C:\Windows, env.BUILD_ID=12, CommonProgramFiles=C:\Program Files\Common Files, java.vm.specification.vendor=Oracle Corporation, env.MAXREQPERSEC=10, file.separator=\, java.runtime.version=1.8.0_31-b13, ProgramFiles=C:\Program Files, sun.boot.class.path=C:\jdk1.8.0_31\jre\lib\resources.jar;C:\jdk1.8.0_31\jre\lib\rt.jar;C:\jdk1.8.0_31\jre\lib\sunrsasign.jar;C:\jdk1.8.0_31\jre\lib\jsse.jar;C:\jdk1.8.0_31\jre\lib\jce.jar;C:\jdk1.8.0_31\jre\lib\charsets.jar;C:\jdk1.8.0_31\jre\lib\jfr.jar;C:\jdk1.8.0_31\jre\classes, env.STARTFROMREQPERSEC=10, env.WORKSPACE=C:\application_build\Jenkins\jobs\Performance-test\workspace, ROOT_BUILD_CAUSE_MANUALTRIGGER=true, SVN_URL_1=https://svn.corporation.com/svn/repos/application_name/qa/BPS_Performance_test, env.TEMP=C:\Users\application_build\AppData\Local\Temp, user.country=US, env.EXECUTOR_NUMBER=1, POM_PACKAGING=jar, maven.home=C:\application_build\maven\apache-maven-3.0.5, java.vendor=Oracle Corporation, env.POM_GROUPID=com.corporation.application_name.test, env.SVN_URL_1=https://svn.corporation.com/svn/repos/application_name/qa/BPS_Performance_test, env.HUDSON_COOKIE=7343ce06-3cfd-4996-b31f-d1b28256157a, java.specification.version=1.8, POM_DISPLAYNAME=application_name :: Performance Testing, sun.arch.data.model=64} [INFO] Using 'UTF-8' encoding to copy filtered resources. [DEBUG] resource with targetPath null directory C:\application_build\Jenkins\jobs\Performance-test\workspace\src\main\resources excludes [] includes [] [DEBUG] ignoreDelta true [INFO] Copying 1 resource [DEBUG] file assembly.xml has a filtered file extension [DEBUG] copy C:\application_build\Jenkins\jobs\Performance-test\workspace\src\main\resources\assembly.xml to C:\application_build\Jenkins\jobs\Performance-test\workspace\target\classes\assembly.xml [DEBUG] no use filter components [INFO] [INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ performance --- [DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:2.3.2: [DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-core:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-monitor:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-toolchain:jar:1.0:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.5:compile [DEBUG] org.codehaus.plexus:plexus-compiler-api:jar:1.8.1:compile [DEBUG] org.codehaus.plexus:plexus-compiler-manager:jar:1.8.1:compile [DEBUG] org.codehaus.plexus:plexus-compiler-javac:jar:1.8.1:runtime [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:2.3.2 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:2.3.2 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:2.3.2 [DEBUG] Included: org.apache.maven.plugins:maven-compiler-plugin:jar:2.3.2 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.5 [DEBUG] Included: org.codehaus.plexus:plexus-compiler-api:jar:1.8.1 [DEBUG] Included: org.codehaus.plexus:plexus-compiler-manager:jar:1.8.1 [DEBUG] Included: org.codehaus.plexus:plexus-compiler-javac:jar:1.8.1 [DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-core:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.0.6 [DEBUG] Excluded: org.apache.maven:maven-toolchain:jar:1.0 [DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:2.3.2, parent: sun.misc.Launcher$AppClassLoader@5c647e05] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile' with basic configurator --> [DEBUG] (f) basedir = C:\application_build\Jenkins\jobs\Performance-test\workspace [DEBUG] (f) buildDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace\target [DEBUG] (f) classpathElements = [C:\application_build\Jenkins\jobs\Performance-test\workspace\target\classes, C:\Users\application_build\.m2\repository\org\scala-lang\scala-library\2.11.8\scala-library-2.11.8.jar] [DEBUG] (f) compileSourceRoots = [C:\application_build\Jenkins\jobs\Performance-test\workspace\src\main\java] [DEBUG] (f) compilerId = javac [DEBUG] (f) debug = true [DEBUG] (f) encoding = UTF-8 [DEBUG] (f) failOnError = true [DEBUG] (f) fork = false [DEBUG] (f) generatedSourcesDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace\target\generated-sources\annotations [DEBUG] (f) optimize = false [DEBUG] (f) outputDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace\target\classes [DEBUG] (f) outputFileName = performance-1.0.0-SNAPSHOT [DEBUG] (f) projectArtifact = com.corporation.application_name.test:performance:jar:1.0.0-SNAPSHOT [DEBUG] (f) session = org.apache.maven.execution.MavenSession@7e4f101b [DEBUG] (f) showDeprecation = false [DEBUG] (f) showWarnings = false [DEBUG] (f) source = 1.5 [DEBUG] (f) staleMillis = 0 [DEBUG] (f) target = 1.5 [DEBUG] (f) verbose = false [DEBUG] -- end configuration -- [DEBUG] Using compiler 'javac'. [INFO] No sources to compile [INFO] [INFO] --- maven-scala-plugin:2.15.2:compile (default) @ performance --- [DEBUG] org.scala-tools:maven-scala-plugin:jar:2.15.2: [DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile [DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.11:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:3.8.1:compile [DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile [DEBUG] org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile [DEBUG] org.apache.maven:maven-core:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile [DEBUG] org.slf4j:slf4j-jdk14:jar:1.5.6:runtime [DEBUG] org.slf4j:slf4j-api:jar:1.5.6:runtime [DEBUG] org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile [DEBUG] commons-cli:commons-cli:jar:1.2:compile [DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile [DEBUG] org.apache.maven:maven-monitor:jar:2.2.1:compile [DEBUG] classworlds:classworlds:jar:1.1:compile [DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile [DEBUG] org.apache.maven.shared:maven-dependency-tree:jar:1.2:compile [DEBUG] org.apache.commons:commons-exec:jar:1.0.1:compile [DEBUG] org.yaml:snakeyaml:jar:1.4:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.1:compile [DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.1.2:compile [DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile [DEBUG] org.codehaus.jackson:jackson-core-asl:jar:1.6.1:compile [DEBUG] org.codehaus.jackson:jackson-mapper-asl:jar:1.6.1:compile [DEBUG] org.apache.maven.shared:maven-invoker:jar:2.0.11:compile [DEBUG] Created new class realm plugin>org.scala-tools:maven-scala-plugin:2.15.2 [DEBUG] Importing foreign packages into class realm plugin>org.scala-tools:maven-scala-plugin:2.15.2 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.scala-tools:maven-scala-plugin:2.15.2 [DEBUG] Included: org.scala-tools:maven-scala-plugin:jar:2.15.2 [DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.11 [DEBUG] Included: junit:junit:jar:3.8.1 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.2.1 [DEBUG] Included: org.apache.maven.doxia:doxia-logging-api:jar:1.1 [DEBUG] Included: org.slf4j:slf4j-jdk14:jar:1.5.6 [DEBUG] Included: org.slf4j:slf4j-api:jar:1.5.6 [DEBUG] Included: org.slf4j:jcl-over-slf4j:jar:1.5.6 [DEBUG] Included: commons-cli:commons-cli:jar:1.2 [DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4 [DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 [DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4 [DEBUG] Included: org.apache.maven.shared:maven-dependency-tree:jar:1.2 [DEBUG] Included: org.apache.commons:commons-exec:jar:1.0.1 [DEBUG] Included: org.yaml:snakeyaml:jar:1.4 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.1 [DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.1.2 [DEBUG] Included: org.codehaus.jackson:jackson-core-asl:jar:1.6.1 [DEBUG] Included: org.codehaus.jackson:jackson-mapper-asl:jar:1.6.1 [DEBUG] Included: org.apache.maven.shared:maven-invoker:jar:2.0.11 [DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.2.1 [DEBUG] Excluded: org.apache.maven:maven-project:jar:2.2.1 [DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.2.1 [DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.2.1 [DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.2.1 [DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.2.1 [DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1 [DEBUG] Excluded: org.apache.maven:maven-core:jar:2.2.1 [DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1 [DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.2.1 [DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.2.1 [DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.2.1 [DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.2.1 [DEBUG] Excluded: classworlds:classworlds:jar:1.1 [DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.2.1 [DEBUG] Excluded: org.apache.maven:maven-model:jar:2.2.1 [DEBUG] Configuring mojo org.scala-tools:maven-scala-plugin:2.15.2:compile from plugin realm ClassRealm[plugin>org.scala-tools:maven-scala-plugin:2.15.2, parent: sun.misc.Launcher$AppClassLoader@5c647e05] [DEBUG] Configuring mojo 'org.scala-tools:maven-scala-plugin:2.15.2:compile' with basic configurator --> [DEBUG] (f) checkMultipleScalaVersions = true [DEBUG] (f) displayCmd = false [DEBUG] (f) failOnMultipleScalaVersions = false [DEBUG] (f) forceUseArgFile = false [DEBUG] (f) fork = true [DEBUG] (f) jvmArgs = [-Xms64m, -Xmx1024m] [DEBUG] (f) localRepo = id: local url: file:///C:/Users/application_build/.m2/repository/ layout: none

[DEBUG] (f) localRepository = id: local
url: file:///C:/Users/application_build/.m2/repository/
layout: none

[DEBUG] (f) notifyCompilation = true
[DEBUG] (f) outputDir = C:\application_build\Jenkins\jobs\Performance-test\workspace\target\classes
[DEBUG] (f) project = MavenProject: com.corporation.application_name.test:performance:1.0.0-SNAPSHOT @ C:\application_build\Jenkins\jobs\Performance-test\workspace\pom.xml
[DEBUG] (f) recompileMode = all
[DEBUG] (f) remoteRepos = [ id: nexus
url: http://jenkinsrepo/repository/maven-public/
layout: default
snapshots: [enabled => false, update => daily]
releases: [enabled => true, update => daily]
]
[DEBUG] (f) scalaClassName = scala.tools.nsc.Main
[DEBUG] (f) scalaVersion = 2.11.8
[DEBUG] (f) sendJavaToScalac = true
[DEBUG] (f) sourceDir = C:\application_build\Jenkins\jobs\Performance-test\workspace\src\main\java
[DEBUG] – end configuration –
[INFO] Checking for multiple versions of scala
[DEBUG] Dependency tree resolution listener events:
[DEBUG] testArtifact: artifact=com.corporation.application_name.test:performance:jar:1.0.0-SNAPSHOT
[DEBUG] includeArtifact: artifact=com.corporation.application_name.test:performance:jar:1.0.0-SNAPSHOT
[DEBUG] startProcessChildren: artifact=com.corporation.application_name.test:performance:jar:1.0.0-SNAPSHOT
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] includeArtifact: artifact=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] startProcessChildren: artifact=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] endProcessChildren: artifact=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling.highcharts:gatling-charts-highcharts:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling.highcharts:gatling-charts-highcharts:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling.highcharts:gatling-charts-highcharts:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-charts:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-charts:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-charts:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=org.scala-lang:scala-reflect:jar:2.11.7:test
[DEBUG] includeArtifact: artifact=org.scala-lang:scala-reflect:jar:2.11.7:test
[DEBUG] startProcessChildren: artifact=org.scala-lang:scala-reflect:jar:2.11.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] endProcessChildren: artifact=org.scala-lang:scala-reflect:jar:2.11.7:test
[DEBUG] testArtifact: artifact=com.typesafe.akka:akka-actor_2.11:jar:2.3.12:test
[DEBUG] includeArtifact: artifact=com.typesafe.akka:akka-actor_2.11:jar:2.3.12:test
[DEBUG] startProcessChildren: artifact=com.typesafe.akka:akka-actor_2.11:jar:2.3.12:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.5:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.5:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] includeArtifact: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] startProcessChildren: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] endProcessChildren: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] endProcessChildren: artifact=com.typesafe.akka:akka-actor_2.11:jar:2.3.12:test
[DEBUG] testArtifact: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] omitForNearer: omitted=com.typesafe:config:jar:1.2.1:test kept=com.typesafe:config:jar:1.2.1:test
[DEBUG] includeArtifact: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] startProcessChildren: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] endProcessChildren: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] testArtifact: artifact=com.dongxiguo:fastring_2.11:jar:0.2.4:test
[DEBUG] includeArtifact: artifact=com.dongxiguo:fastring_2.11:jar:0.2.4:test
[DEBUG] startProcessChildren: artifact=com.dongxiguo:fastring_2.11:jar:0.2.4:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.0:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.0:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=org.scala-lang:scala-reflect:jar:2.11.0:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-reflect:jar:2.11.0:test kept=org.scala-lang:scala-reflect:jar:2.11.7:test
[DEBUG] endProcessChildren: artifact=com.dongxiguo:fastring_2.11:jar:0.2.4:test
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots).
[DEBUG] testArtifact: artifact=net.sf.opencsv:opencsv:jar:2.3:test
[DEBUG] includeArtifact: artifact=net.sf.opencsv:opencsv:jar:2.3:test
[DEBUG] startProcessChildren: artifact=net.sf.opencsv:opencsv:jar:2.3:test
[DEBUG] endProcessChildren: artifact=net.sf.opencsv:opencsv:jar:2.3:test
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots).
[DEBUG] testArtifact: artifact=com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test
[DEBUG] includeArtifact: artifact=com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test
[DEBUG] startProcessChildren: artifact=com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test
[DEBUG] endProcessChildren: artifact=com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test
[DEBUG] testArtifact: artifact=org.threeten:threetenbp:jar:1.2:test
[DEBUG] includeArtifact: artifact=org.threeten:threetenbp:jar:1.2:test
[DEBUG] startProcessChildren: artifact=org.threeten:threetenbp:jar:1.2:test
[DEBUG] endProcessChildren: artifact=org.threeten:threetenbp:jar:1.2:test
[DEBUG] testArtifact: artifact=org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.4:test
[DEBUG] includeArtifact: artifact=org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.4:test
[DEBUG] startProcessChildren: artifact=org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.4:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.6:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.6:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] endProcessChildren: artifact=org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.4:test
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for maven.java.net (https://maven.java.net/content/repositories/releases).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots).
[DEBUG] testArtifact: artifact=com.ning:async-http-client:jar:1.9.30:test
[DEBUG] includeArtifact: artifact=com.ning:async-http-client:jar:1.9.30:test
[DEBUG] startProcessChildren: artifact=com.ning:async-http-client:jar:1.9.30:test
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots).
[DEBUG] testArtifact: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] includeArtifact: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] startProcessChildren: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] endProcessChildren: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] testArtifact: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] includeArtifact: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] startProcessChildren: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] endProcessChildren: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] endProcessChildren: artifact=com.ning:async-http-client:jar:1.9.30:test
[DEBUG] testArtifact: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] omitForNearer: omitted=org.slf4j:slf4j-api:jar:1.7.12:test kept=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] includeArtifact: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] startProcessChildren: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] endProcessChildren: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] testArtifact: artifact=com.typesafe.scala-logging:scala-logging_2.11:jar:3.1.0:test
[DEBUG] includeArtifact: artifact=com.typesafe.scala-logging:scala-logging_2.11:jar:3.1.0:test
[DEBUG] startProcessChildren: artifact=com.typesafe.scala-logging:scala-logging_2.11:jar:3.1.0:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.1:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.1:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=org.scala-lang:scala-reflect:jar:2.11.1:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-reflect:jar:2.11.1:test kept=org.scala-lang:scala-reflect:jar:2.11.7:test
[DEBUG] testArtifact: artifact=org.slf4j:slf4j-api:jar:1.7.7:test
[DEBUG] omitForNearer: omitted=org.slf4j:slf4j-api:jar:1.7.7:test kept=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] endProcessChildren: artifact=com.typesafe.scala-logging:scala-logging_2.11:jar:3.1.0:test
[DEBUG] testArtifact: artifact=ch.qos.logback:logback-classic:jar:1.1.3:test
[DEBUG] includeArtifact: artifact=ch.qos.logback:logback-classic:jar:1.1.3:test
[DEBUG] startProcessChildren: artifact=ch.qos.logback:logback-classic:jar:1.1.3:test
[DEBUG] testArtifact: artifact=ch.qos.logback:logback-core:jar:1.1.3:test
[DEBUG] includeArtifact: artifact=ch.qos.logback:logback-core:jar:1.1.3:test
[DEBUG] startProcessChildren: artifact=ch.qos.logback:logback-core:jar:1.1.3:test
[DEBUG] endProcessChildren: artifact=ch.qos.logback:logback-core:jar:1.1.3:test
[DEBUG] testArtifact: artifact=org.slf4j:slf4j-api:jar:1.7.7:test
[DEBUG] omitForNearer: omitted=org.slf4j:slf4j-api:jar:1.7.7:test kept=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] endProcessChildren: artifact=ch.qos.logback:logback-classic:jar:1.1.3:test
[DEBUG] testArtifact: artifact=io.gatling:jsonpath_2.11:jar:0.6.4:test
[DEBUG] includeArtifact: artifact=io.gatling:jsonpath_2.11:jar:0.6.4:test
[DEBUG] startProcessChildren: artifact=io.gatling:jsonpath_2.11:jar:0.6.4:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.6:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.6:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.3:test
[DEBUG] omitForNearer: omitted=org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.3:test kept=org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.4:test
[DEBUG] endProcessChildren: artifact=io.gatling:jsonpath_2.11:jar:0.6.4:test
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots).
[DEBUG] testArtifact: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] includeArtifact: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] startProcessChildren: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots).
[DEBUG] testArtifact: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] includeArtifact: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] startProcessChildren: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] endProcessChildren: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots).
[DEBUG] testArtifact: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] includeArtifact: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] startProcessChildren: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] endProcessChildren: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] endProcessChildren: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots).
[DEBUG] testArtifact: artifact=io.fastjson:boon:jar:0.33:test
[DEBUG] includeArtifact: artifact=io.fastjson:boon:jar:0.33:test
[DEBUG] startProcessChildren: artifact=io.fastjson:boon:jar:0.33:test
[DEBUG] endProcessChildren: artifact=io.fastjson:boon:jar:0.33:test
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots).
[DEBUG] testArtifact: artifact=net.sf.saxon:Saxon-HE:jar:9.6.0-5:test
[DEBUG] includeArtifact: artifact=net.sf.saxon:Saxon-HE:jar:9.6.0-5:test
[DEBUG] startProcessChildren: artifact=net.sf.saxon:Saxon-HE:jar:9.6.0-5:test
[DEBUG] endProcessChildren: artifact=net.sf.saxon:Saxon-HE:jar:9.6.0-5:test
[DEBUG] testArtifact: artifact=org.jodd:jodd-lagarto:jar:3.6.6:test
[DEBUG] includeArtifact: artifact=org.jodd:jodd-lagarto:jar:3.6.6:test
[DEBUG] startProcessChildren: artifact=org.jodd:jodd-lagarto:jar:3.6.6:test
[DEBUG] testArtifact: artifact=org.jodd:jodd-core:jar:3.6.6:test
[DEBUG] includeArtifact: artifact=org.jodd:jodd-core:jar:3.6.6:test
[DEBUG] startProcessChildren: artifact=org.jodd:jodd-core:jar:3.6.6:test
[DEBUG] endProcessChildren: artifact=org.jodd:jodd-core:jar:3.6.6:test
[DEBUG] testArtifact: artifact=org.jodd:jodd-log:jar:3.6.6:test
[DEBUG] includeArtifact: artifact=org.jodd:jodd-log:jar:3.6.6:test
[DEBUG] startProcessChildren: artifact=org.jodd:jodd-log:jar:3.6.6:test
[DEBUG] endProcessChildren: artifact=org.jodd:jodd-log:jar:3.6.6:test
[DEBUG] endProcessChildren: artifact=org.jodd:jodd-lagarto:jar:3.6.6:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] testArtifact: artifact=com.tdunning:t-digest:jar:3.0:test
[DEBUG] includeArtifact: artifact=com.tdunning:t-digest:jar:3.0:test
[DEBUG] startProcessChildren: artifact=com.tdunning:t-digest:jar:3.0:test
[DEBUG] endProcessChildren: artifact=com.tdunning:t-digest:jar:3.0:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-charts:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-app:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-app:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-app:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-core:jar:2.1.7:test kept=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-http:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-http:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-http:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-core:jar:2.1.7:test kept=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] testArtifact: artifact=com.ning:async-http-client:jar:1.9.30:test
[DEBUG] omitForNearer: omitted=com.ning:async-http-client:jar:1.9.30:test kept=com.ning:async-http-client:jar:1.9.30:test
[DEBUG] testArtifact: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] omitForNearer: omitted=io.netty:netty:jar:3.10.4.Final:test kept=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] includeArtifact: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] startProcessChildren: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] endProcessChildren: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots).
[DEBUG] testArtifact: artifact=com.jcraft:jzlib:jar:1.1.3:test
[DEBUG] includeArtifact: artifact=com.jcraft:jzlib:jar:1.1.3:test
[DEBUG] startProcessChildren: artifact=com.jcraft:jzlib:jar:1.1.3:test
[DEBUG] endProcessChildren: artifact=com.jcraft:jzlib:jar:1.1.3:test
[DEBUG] testArtifact: artifact=org.scala-lang.modules:scala-xml_2.11:jar:1.0.4:test
[DEBUG] includeArtifact: artifact=org.scala-lang.modules:scala-xml_2.11:jar:1.0.4:test
[DEBUG] startProcessChildren: artifact=org.scala-lang.modules:scala-xml_2.11:jar:1.0.4:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.4:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.4:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] endProcessChildren: artifact=org.scala-lang.modules:scala-xml_2.11:jar:1.0.4:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-http:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-jms:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-jms:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-jms:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-core:jar:2.1.7:test kept=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache-snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache-incubator (http://people.apache.org/repo/m2-incubating-repository/).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for codehaus-snapshots (http://snapshots.repository.codehaus.org).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] testArtifact: artifact=org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:test
[DEBUG] includeArtifact: artifact=org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:test
[DEBUG] startProcessChildren: artifact=org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:test
[DEBUG] endProcessChildren: artifact=org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:test
[DEBUG] testArtifact: artifact=com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test
[DEBUG] omitForNearer: omitted=com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test kept=com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-jms:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-jdbc:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-jdbc:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-jdbc:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-core:jar:2.1.7:test kept=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-jdbc:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-redis:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-redis:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-redis:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-core:jar:2.1.7:test kept=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] testArtifact: artifact=net.debasishg:redisclient_2.11:jar:2.14:test
[DEBUG] includeArtifact: artifact=net.debasishg:redisclient_2.11:jar:2.14:test
[DEBUG] startProcessChildren: artifact=net.debasishg:redisclient_2.11:jar:2.14:test
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] testArtifact: artifact=commons-pool:commons-pool:jar:1.6:test
[DEBUG] includeArtifact: artifact=commons-pool:commons-pool:jar:1.6:test
[DEBUG] startProcessChildren: artifact=commons-pool:commons-pool:jar:1.6:test
[DEBUG] endProcessChildren: artifact=commons-pool:commons-pool:jar:1.6:test
[DEBUG] testArtifact: artifact=org.slf4j:slf4j-api:jar:1.7.2:test
[DEBUG] omitForNearer: omitted=org.slf4j:slf4j-api:jar:1.7.2:test kept=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] testArtifact: artifact=com.typesafe.akka:akka-actor_2.11:jar:2.3.6:test
[DEBUG] omitForNearer: omitted=com.typesafe.akka:akka-actor_2.11:jar:2.3.6:test kept=com.typesafe.akka:akka-actor_2.11:jar:2.3.12:test
[DEBUG] endProcessChildren: artifact=net.debasishg:redisclient_2.11:jar:2.14:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-redis:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-metrics:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-metrics:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-metrics:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-core:jar:2.1.7:test kept=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] testArtifact: artifact=com.tdunning:t-digest:jar:3.0:test
[DEBUG] omitForNearer: omitted=com.tdunning:t-digest:jar:3.0:test kept=com.tdunning:t-digest:jar:3.0:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-metrics:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-charts:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-charts:jar:2.1.7:test kept=io.gatling:gatling-charts:jar:2.1.7:test
[DEBUG] testArtifact: artifact=com.github.scopt:scopt_2.11:jar:3.3.0:test
[DEBUG] includeArtifact: artifact=com.github.scopt:scopt_2.11:jar:3.3.0:test
[DEBUG] startProcessChildren: artifact=com.github.scopt:scopt_2.11:jar:3.3.0:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.4:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.4:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] endProcessChildren: artifact=com.github.scopt:scopt_2.11:jar:3.3.0:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-app:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-recorder:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-recorder:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-recorder:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-core:jar:2.1.7:test kept=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-http:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-http:jar:2.1.7:test kept=io.gatling:gatling-http:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang.modules:scala-swing_2.11:jar:1.0.2:test
[DEBUG] includeArtifact: artifact=org.scala-lang.modules:scala-swing_2.11:jar:1.0.2:test
[DEBUG] startProcessChildren: artifact=org.scala-lang.modules:scala-swing_2.11:jar:1.0.2:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.0:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.0:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] endProcessChildren: artifact=org.scala-lang.modules:scala-swing_2.11:jar:1.0.2:test
[DEBUG] testArtifact: artifact=com.github.scopt:scopt_2.11:jar:3.3.0:test
[DEBUG] omitForNearer: omitted=com.github.scopt:scopt_2.11:jar:3.3.0:test kept=com.github.scopt:scopt_2.11:jar:3.3.0:test
[DEBUG] testArtifact: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] omitForNearer: omitted=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test kept=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] includeArtifact: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] startProcessChildren: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] testArtifact: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] includeArtifact: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] startProcessChildren: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] endProcessChildren: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] testArtifact: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] includeArtifact: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] startProcessChildren: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] endProcessChildren: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] endProcessChildren: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] testArtifact: artifact=org.bouncycastle:bcpkix-jdk15on:jar:1.52:test
[DEBUG] includeArtifact: artifact=org.bouncycastle:bcpkix-jdk15on:jar:1.52:test
[DEBUG] startProcessChildren: artifact=org.bouncycastle:bcpkix-jdk15on:jar:1.52:test
[DEBUG] testArtifact: artifact=org.bouncycastle:bcprov-jdk15on:jar:1.52:test
[DEBUG] includeArtifact: artifact=org.bouncycastle:bcprov-jdk15on:jar:1.52:test
[DEBUG] startProcessChildren: artifact=org.bouncycastle:bcprov-jdk15on:jar:1.52:test
[DEBUG] endProcessChildren: artifact=org.bouncycastle:bcprov-jdk15on:jar:1.52:test
[DEBUG] endProcessChildren: artifact=org.bouncycastle:bcpkix-jdk15on:jar:1.52:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-recorder:jar:2.1.7:test
[DEBUG] endProcessChildren: artifact=io.gatling.highcharts:gatling-charts-highcharts:jar:2.1.7:test
[DEBUG] endProcessChildren: artifact=com.corporation.application_name.test:performance:jar:1.0.0-SNAPSHOT
[DEBUG] checking [com.corporation.application_name.test:performance:jar:1.0.0-SNAPSHOT] for scala version
[DEBUG] checking [org.scala-lang:scala-library:jar:2.11.8:compile] for scala version
[DEBUG] checking [io.gatling.highcharts:gatling-charts-highcharts:jar:2.1.7:test] for scala version
[DEBUG] checking [org.scala-lang:scala-library:jar:2.11.7:test] for scala version
[WARNING] Expected all dependencies to require Scala version: 2.11.8
[WARNING] com.corporation.application_name.test:performance:1.0.0-SNAPSHOT requires scala version: 2.11.8
[WARNING] io.gatling.highcharts:gatling-charts-highcharts:2.1.7 requires scala version: 2.11.7
[WARNING] Multiple versions of scala libraries detected!
[INFO] includes = [/*.java,/*.scala,]
[INFO] excludes = []
[WARNING] No source files found.
[INFO]
[INFO] — maven-resources-plugin:2.5:testResources (default-testResources) @ performance —
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.5:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.5, parent: sun.misc.Launcher$AppClassLoader@5c647e05]
[debug] execute contextualize
[DEBUG] Configuring mojo ‘org.apache.maven.plugins:maven-resources-plugin:2.5:testResources’ with basic configurator →
[DEBUG] (f) buildFilters = []
[DEBUG] (f) encoding = UTF-8
[DEBUG] (f) escapeWindowsPaths = true
[DEBUG] (s) includeEmptyDirs = false
[DEBUG] (s) outputDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes
[DEBUG] (s) overwrite = false
[DEBUG] (f) project = MavenProject: com.corporation.application_name.test:performance:1.0.0-SNAPSHOT @ C:\application_build\Jenkins\jobs\Performance-test\workspace\pom.xml
[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
[DEBUG] (f) session = org.apache.maven.execution.MavenSession@7e4f101b
[DEBUG] (f) supportMultiLineFiltering = false
[DEBUG] (f) useBuildFilters = true
[DEBUG] (s) useDefaultDelimiters = true
[DEBUG] – end configuration –
[DEBUG] properties used {PROCESSOR_ARCHITECTURE=AMD64, file.encoding.pkg=sun.io, TRACE_FORMAT_SEARCH_PATH=\winseqfe\release\Windows6.0\lh_sp2rtm\6002.18005.090410-1830\amd64fre\symbols.pri\TraceFormat, ProgramData=C:\ProgramData, java.home=C:\jdk1.8.0_31\jre, ROOT_BUILD_CAUSE=MANUALTRIGGER, env.DFSTRACINGON=FALSE, NODE_NAME=master, JENKINS_URL=http://jenkins:8080/, DFSTRACINGON=FALSE, ALLUSERSPROFILE=C:\ProgramData, java.endorsed.dirs=C:\jdk1.8.0_31\jre\lib\endorsed, env.POM_VERSION=1.0.0-SNAPSHOT, env.USERNAME=application_build, env.HUDSON_HOME=C:\application_build\Jenkins, PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;c:\Program Files\Microsoft Security Client\MpProvider, USERDOMAIN=corporation, sun.os.patch.level=Service Pack 2, java.vendor.url=http://java.oracle.com/, env.COMPUTERNAME=jenkins, CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files, env.NODE_NAME=master, java.version=1.8.0_31, JOB_NAME=Performance-test, COMPUTERNAME=jenkins, env.NODE_LABELS=master, env.JENKINS_SERVER_COOKIE=de932d231d56f900, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, PUBLIC=C:\Users\Public, env.USERPROFILE=C:\Users\application_build, env.SVN_REVISION=9232, env.SERVICE_ID=jenkins, BUILD_CAUSE=MANUALTRIGGER, user.name=application_build, SVN_REVISION=9232, sun.io.unicode.encoding=UnicodeLittle, sun.jnu.encoding=Cp1252, java.runtime.name=Java™ SE Runtime Environment, env.ROOT_BUILD_CAUSE_MANUALTRIGGER=true, windir=C:\Windows, env.LOCALAPPDATA=C:\Users\application_build\AppData\Local, PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 44 Stepping 2, GenuineIntel, java.specification.name=Java Platform API Specification, LOCALAPPDATA=C:\Users\application_build\AppData\Local, user.timezone=Europe/Belgrade, user.script=, path.separator=;, BUILD_TAG=jenkins-Performance-test-12, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 44 Stepping 2, GenuineIntel, gatling-plugin.version=2.1.7, file.encoding=Cp1252, PATH=C:\ProgramData\Oracle\Java\javapath;C:\oracle\product\11.2.0\dbhome_1\bin;c:\oracle\product\11.2.0\dbhome_1\OPatch;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Windows Imaging;C:\jdk1.8.0_31\bin;C:\Windows\System32\WindowsPowerShell\v1.0;C:\application_build\maven\apache-maven-3.0.5\bin;C:\Program Files\SlikSvn\bin;C:\Program Files\TortoiseSVN\bin, env.ORACLE_HOME=c:\oracle\product\11.2.0\dbhome_1, sun.java.command=org.jvnet.hudson.maven3.agent.Maven3Main C:\application_build\maven\apache-maven-3.0.5 C:\application_build\Jenkins\war\WEB-INF\lib\remoting-2.51.jar C:\application_build\Jenkins\plugins\maven-plugin\WEB-INF\lib\maven3-interceptor-1.5.jar C:\application_build\Jenkins\plugins\maven-plugin\WEB-INF\lib\maven3-interceptor-commons-1.5.jar 53993, HUDSON_URL=http://jenkins:8080/, JENKINS_SERVER_COOKIE=de932d231d56f900, env.APPDATA=C:\Users\application_build\AppData\Roaming, env.SVN_REVISION_1=9232, EXECUTOR_NUMBER=1, env.WINDIR=C:\Windows, env.BUILD_TAG=jenkins-Performance-test-12, env.ROOT_BUILD_CAUSE=MANUALTRIGGER, scala.version=2.11.8, BASE=C:\application_build\Jenkins, server=2, java.io.tmpdir=C:\Users\application_build\AppData\Local\Temp, APPDATA=C:\Users\application_build\AppData\Roaming, user.language=en, line.separator=
, BUILD_URL=http://jenkins:8080/job/Performance-test/12/, M2_REPO=, M2_HOME=C:\application_build\maven\apache-maven-3.0.5, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maxReqPerSec=10, env.JOB_NAME=Performance-test, java.vm.info=mixed mode, env.BUILD_DISPLAY_NAME=#12, sun.desktop=windows, java.vm.specification.name=Java Virtual Machine Specification, BUILD_DISPLAY_NAME=#12, OS=Windows_NT, env.BUILD_URL=http://jenkins:8080/job/Performance-test/12/, env.M2_HOME=C:\application_build\maven\apache-maven-3.0.5, protocol=http, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, guice.disable.misplaced.annotation.check=true, env.NOOFREQUESTS=10, SVN_REVISION_1=9232, env.SERVER=2, gatling.version=2.1.7, HUDSON_SERVER_COOKIE=de932d231d56f900, env.BUILD_CAUSE_MANUALTRIGGER=true, env.POM_ARTIFACTID=performance, MAVEN_HOME=C:\application_build\maven\apache-maven-3.0.5, env.PSMODULEPATH=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;c:\Program Files\Microsoft Security Client\MpProvider, PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.awt.printerjob=sun.awt.windows.WPrinterJob, maven3.interceptor.common=C:\application_build\Jenkins\plugins\maven-plugin\WEB-INF\lib\maven3-interceptor-commons-1.5.jar, CLASSPATH=, env.HUDSON_SERVER_COOKIE=de932d231d56f900, startFromReqPerSec=10, env.PUBLIC=C:\Users\Public, env.USERDOMAIN=corporation, noOfRequests=10, baseUrl=http://corporation.com, env.PROCESSOR_LEVEL=6, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.BUILD_NUMBER=12, os.name=Windows Server 2008, java.specification.vendor=Oracle Corporation, FP_NO_HOST_CHECK=NO, env.TMP=C:\Users\application_build\AppData\Local\Temp, java.vm.name=Java HotSpot™ 64-Bit Server VM, BUILD_NUMBER=12, env.JOB_URL=http://jenkins:8080/job/Performance-test/, env.OS=Windows_NT, maven3.interceptor=C:\application_build\Jenkins\plugins\maven-plugin\WEB-INF\lib\maven3-interceptor-1.5.jar, java.library.path=C:\jdk1.8.0_31\jre\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\application_build\maven\apache-maven-3.0.5/bin;C:\ProgramData\Oracle\Java\javapath;C:\oracle\product\11.2.0\dbhome_1\bin;c:\oracle\product\11.2.0\dbhome_1\OPatch;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Windows Imaging;C:\jdk1.8.0_31\bin;C:\Windows\System32\WindowsPowerShell\v1.0;C:\application_build\maven\apache-maven-3.0.5\bin;C:\Program Files\SlikSvn\bin;C:\Program Files\TortoiseSVN\bin;., env.TRACE_FORMAT_SEARCH_PATH=\winseqfe\release\Windows6.0\lh_sp2rtm\6002.18005.090410-1830\amd64fre\symbols.pri\TraceFormat, env.PATH=C:\application_build\maven\apache-maven-3.0.5/bin;C:\ProgramData\Oracle\Java\javapath;C:\oracle\product\11.2.0\dbhome_1\bin;c:\oracle\product\11.2.0\dbhome_1\OPatch;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Windows Imaging;C:\jdk1.8.0_31\bin;C:\Windows\System32\WindowsPowerShell\v1.0;C:\application_build\maven\apache-maven-3.0.5\bin;C:\Program Files\SlikSvn\bin;C:\Program Files\TortoiseSVN\bin, env.HUDSON_URL=http://jenkins:8080/, WINSW_EXECUTABLE=C:\application_build\Jenkins\jenkins.exe, env.JENKINS_URL=http://jenkins:8080/, POM_GROUPID=com.corporation.application_name.test, POM_ARTIFACTID=performance, java.class.version=52.0, JOB_URL=http://jenkins:8080/job/Performance-test/, env.BUILD_CAUSE=MANUALTRIGGER, env.PROTOCOL=http, env.JENKINS_HOME=C:\application_build\Jenkins, env.BASE=C:\application_build\Jenkins, env.SYSTEMROOT=C:\Windows, env.COMSPEC=C:\Windows\system32\cmd.exe, JENKINS_HOME=C:\application_build\Jenkins, BUILD_ID=12, TEMP=C:\Users\application_build\AppData\Local\Temp, sun.boot.library.path=C:\jdk1.8.0_31\jre\bin, project.build.sourceEncoding=UTF-8, env.SYSTEMDRIVE=C:, M2=C:\application_build\maven\apache-maven-3.0.5\bin, env.PROCESSOR_REVISION=2c02, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.POM_DISPLAYNAME=application_name :: Performance Testing, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, user.variant=, PROCESSOR_REVISION=2c02, POM_VERSION=1.0.0-SNAPSHOT, HUDSON_HOME=C:\application_build\Jenkins, ProgramFiles(x86)=C:\Program Files (x86), PATH+MAVEN=C:\application_build\maven\apache-maven-3.0.5/bin, BUILD_CAUSE_MANUALTRIGGER=true, env.PROGRAMFILES=C:\Program Files, java.vm.specification.version=1.8, JAVA_HOME=C:\jdk1.8.0_31, env.PROGRAMDATA=C:\ProgramData, awt.toolkit=sun.awt.windows.WToolkit, NODE_LABELS=master, env.MAVEN_HOME=C:\application_build\maven\apache-maven-3.0.5, sun.cpu.isalist=amd64, USERPROFILE=C:\Users\application_build, java.ext.dirs=C:\jdk1.8.0_31\jre\lib\ext;C:\Windows\Sun\Java\lib\ext, os.version=6.0, user.home=C:\Users\application_build, USERNAME=application_build, java.vm.vendor=Oracle Corporation, PROCESSOR_LEVEL=6, env.JAVA_HOME=C:\jdk1.8.0_31, user.dir=C:\application_build\Jenkins\jobs\Performance-test\workspace, SVN_URL=https://svn.corporation.com/svn/repos/application_name/qa/BPS_Performance_test, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.M2=C:\application_build\maven\apache-maven-3.0.5\bin, TMP=C:\Users\application_build\AppData\Local\Temp, env.FP_NO_HOST_CHECK=NO, UATDATA=C:\Windows\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, sun.cpu.endian=little, env.ALLUSERSPROFILE=C:\ProgramData, SystemDrive=C:, env.SVN_URL=https://svn.corporation.com/svn/repos/application_name/qa/BPS_Performance_test, env.WINSW_EXECUTABLE=C:\application_build\Jenkins\jenkins.exe, env.PROCESSOR_ARCHITECTURE=AMD64, java.vm.version=25.31-b07, ORACLE_HOME=c:\oracle\product\11.2.0\dbhome_1, java.class.path=C:\application_build\Jenkins\plugins\maven-plugin\WEB-INF\lib\maven3-agent-1.5.jar;C:\application_build\maven\apache-maven-3.0.5\boot\plexus-classworlds-2.4.jar, env.UATDATA=C:\Windows\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, os.arch=amd64, WORKSPACE=C:\application_build\Jenkins\jobs\Performance-test\workspace, ComSpec=C:\Windows\system32\cmd.exe, env.POM_PACKAGING=jar, sun.java.launcher=SUN_STANDARD, SERVICE_ID=jenkins, SystemRoot=C:\Windows, env.BUILD_ID=12, CommonProgramFiles=C:\Program Files\Common Files, java.vm.specification.vendor=Oracle Corporation, env.MAXREQPERSEC=10, file.separator=, java.runtime.version=1.8.0_31-b13, ProgramFiles=C:\Program Files, sun.boot.class.path=C:\jdk1.8.0_31\jre\lib\resources.jar;C:\jdk1.8.0_31\jre\lib\rt.jar;C:\jdk1.8.0_31\jre\lib\sunrsasign.jar;C:\jdk1.8.0_31\jre\lib\jsse.jar;C:\jdk1.8.0_31\jre\lib\jce.jar;C:\jdk1.8.0_31\jre\lib\charsets.jar;C:\jdk1.8.0_31\jre\lib\jfr.jar;C:\jdk1.8.0_31\jre\classes, env.STARTFROMREQPERSEC=10, env.WORKSPACE=C:\application_build\Jenkins\jobs\Performance-test\workspace, ROOT_BUILD_CAUSE_MANUALTRIGGER=true, SVN_URL_1=https://svn.corporation.com/svn/repos/application_name/qa/BPS_Performance_test, env.TEMP=C:\Users\application_build\AppData\Local\Temp, user.country=US, env.EXECUTOR_NUMBER=1, POM_PACKAGING=jar, maven.home=C:\application_build\maven\apache-maven-3.0.5, java.vendor=Oracle Corporation, env.POM_GROUPID=com.corporation.application_name.test, env.SVN_URL_1=https://svn.corporation.com/svn/repos/application_name/qa/BPS_Performance_test, env.HUDSON_COOKIE=7343ce06-3cfd-4996-b31f-d1b28256157a, java.specification.version=1.8, POM_DISPLAYNAME=application_name :: Performance Testing, sun.arch.data.model=64}
[INFO] Using ‘UTF-8’ encoding to copy filtered resources.
[DEBUG] resource with targetPath null
directory C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\resources
excludes []
includes []
[DEBUG] ignoreDelta true
[INFO] Copying 8 resources
[DEBUG] file application.conf has a filtered file extension
[DEBUG] copy C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\resources\application.conf to C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\application.conf
[DEBUG] file checkFrauds.csv has a filtered file extension
[DEBUG] copy C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\resources\data\checkFrauds.csv to C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\data\checkFrauds.csv
[DEBUG] file customer.csv has a filtered file extension
[DEBUG] copy C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\resources\data\customer.csv to C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\data\customer.csv
[DEBUG] file transaction.csv has a filtered file extension
[DEBUG] copy C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\resources\data\transaction.csv to C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\data\transaction.csv
[DEBUG] file gatling.conf has a filtered file extension
[DEBUG] copy C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\resources\gatling.conf to C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\gatling.conf
[DEBUG] file logback-test.xml has a filtered file extension
[DEBUG] copy C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\resources\logback-test.xml to C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\logback-test.xml
[DEBUG] file checkFrauds.xml has a filtered file extension
[DEBUG] copy C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\resources\template\checkFrauds.xml to C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\template\checkFrauds.xml
[DEBUG] file transaction.xml has a filtered file extension
[DEBUG] copy C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\resources\template\transaction.xml to C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes\template\transaction.xml
[DEBUG] no use filter components
[INFO]
[INFO] — maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ performance —
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:2.3.2, parent: sun.misc.Launcher$AppClassLoader@5c647e05]
[DEBUG] Configuring mojo ‘org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile’ with basic configurator →
[DEBUG] (f) basedir = C:\application_build\Jenkins\jobs\Performance-test\workspace
[DEBUG] (f) buildDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace\target
[DEBUG] (f) classpathElements = [C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes, C:\application_build\Jenkins\jobs\Performance-test\workspace\target\classes, C:\Users\application_build.m2\repository\org\scala-lang\scala-library\2.11.8\scala-library-2.11.8.jar, C:\Users\application_build.m2\repository\io\gatling\highcharts\gatling-charts-highcharts\2.1.7\gatling-charts-highcharts-2.1.7.jar, C:\Users\application_build.m2\repository\io\gatling\gatling-charts\2.1.7\gatling-charts-2.1.7.jar, C:\Users\application_build.m2\repository\io\gatling\gatling-core\2.1.7\gatling-core-2.1.7.jar, C:\Users\application_build.m2\repository\org\scala-lang\scala-reflect\2.11.7\scala-reflect-2.11.7.jar, C:\Users\application_build.m2\repository\com\typesafe\akka\akka-actor_2.11\2.3.12\akka-actor_2.11-2.3.12.jar, C:\Users\application_build.m2\repository\com\typesafe\config\1.2.1\config-1.2.1.jar, C:\Users\application_build.m2\repository\com\dongxiguo\fastring_2.11\0.2.4\fastring_2.11-0.2.4.jar, C:\Users\application_build.m2\repository\net\sf\opencsv\opencsv\2.3\opencsv-2.3.jar, C:\Users\application_build.m2\repository\com\googlecode\concurrentlinkedhashmap\concurrentlinkedhashmap-lru\1.4.2\concurrentlinkedhashmap-lru-1.4.2.jar, C:\Users\application_build.m2\repository\org\threeten\threetenbp\1.2\threetenbp-1.2.jar, C:\Users\application_build.m2\repository\org\scala-lang\modules\scala-parser-combinators_2.11\1.0.4\scala-parser-combinators_2.11-1.0.4.jar, C:\Users\application_build.m2\repository\com\ning\async-http-client\1.9.30\async-http-client-1.9.30.jar, C:\Users\application_build.m2\repository\org\slf4j\slf4j-api\1.7.12\slf4j-api-1.7.12.jar, C:\Users\application_build.m2\repository\com\typesafe\scala-logging\scala-logging_2.11\3.1.0\scala-logging_2.11-3.1.0.jar, C:\Users\application_build.m2\repository\ch\qos\logback\logback-classic\1.1.3\logback-classic-1.1.3.jar, C:\Users\application_build.m2\repository\ch\qos\logback\logback-core\1.1.3\logback-core-1.1.3.jar, C:\Users\application_build.m2\repository\io\gatling\jsonpath_2.11\0.6.4\jsonpath_2.11-0.6.4.jar, C:\Users\application_build.m2\repository\io\fastjson\boon\0.33\boon-0.33.jar, C:\Users\application_build.m2\repository\net\sf\saxon\Saxon-HE\9.6.0-5\Saxon-HE-9.6.0-5.jar, C:\Users\application_build.m2\repository\org\jodd\jodd-lagarto\3.6.6\jodd-lagarto-3.6.6.jar, C:\Users\application_build.m2\repository\org\jodd\jodd-core\3.6.6\jodd-core-3.6.6.jar, C:\Users\application_build.m2\repository\org\jodd\jodd-log\3.6.6\jodd-log-3.6.6.jar, C:\Users\application_build.m2\repository\com\tdunning\t-digest\3.0\t-digest-3.0.jar, C:\Users\application_build.m2\repository\io\gatling\gatling-app\2.1.7\gatling-app-2.1.7.jar, C:\Users\application_build.m2\repository\io\gatling\gatling-http\2.1.7\gatling-http-2.1.7.jar, C:\Users\application_build.m2\repository\io\netty\netty\3.10.4.Final\netty-3.10.4.Final.jar, C:\Users\application_build.m2\repository\com\jcraft\jzlib\1.1.3\jzlib-1.1.3.jar, C:\Users\application_build.m2\repository\org\scala-lang\modules\scala-xml_2.11\1.0.4\scala-xml_2.11-1.0.4.jar, C:\Users\application_build.m2\repository\io\gatling\gatling-jms\2.1.7\gatling-jms-2.1.7.jar, C:\Users\application_build.m2\repository\org\apache\geronimo\specs\geronimo-jms_1.1_spec\1.1.1\geronimo-jms_1.1_spec-1.1.1.jar, C:\Users\application_build.m2\repository\io\gatling\gatling-jdbc\2.1.7\gatling-jdbc-2.1.7.jar, C:\Users\application_build.m2\repository\io\gatling\gatling-redis\2.1.7\gatling-redis-2.1.7.jar, C:\Users\application_build.m2\repository\net\debasishg\redisclient_2.11\2.14\redisclient_2.11-2.14.jar, C:\Users\application_build.m2\repository\commons-pool\commons-pool\1.6\commons-pool-1.6.jar, C:\Users\application_build.m2\repository\io\gatling\gatling-metrics\2.1.7\gatling-metrics-2.1.7.jar, C:\Users\application_build.m2\repository\com\github\scopt\scopt_2.11\3.3.0\scopt_2.11-3.3.0.jar, C:\Users\application_build.m2\repository\io\gatling\gatling-recorder\2.1.7\gatling-recorder-2.1.7.jar, C:\Users\application_build.m2\repository\org\scala-lang\modules\scala-swing_2.11\1.0.2\scala-swing_2.11-1.0.2.jar, C:\Users\application_build.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.6.0-rc1\jackson-databind-2.6.0-rc1.jar, C:\Users\application_build.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.6.0-rc1\jackson-annotations-2.6.0-rc1.jar, C:\Users\application_build.m2\repository\com\fasterxml\jackson\core\jackson-core\2.6.0-rc1\jackson-core-2.6.0-rc1.jar, C:\Users\application_build.m2\repository\org\bouncycastle\bcpkix-jdk15on\1.52\bcpkix-jdk15on-1.52.jar, C:\Users\application_build.m2\repository\org\bouncycastle\bcprov-jdk15on\1.52\bcprov-jdk15on-1.52.jar]
[DEBUG] (f) compileSourceRoots = [C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\java]
[DEBUG] (f) compilerId = javac
[DEBUG] (f) debug = true
[DEBUG] (f) encoding = UTF-8
[DEBUG] (f) failOnError = true
[DEBUG] (f) fork = false
[DEBUG] (f) generatedTestSourcesDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace\target\generated-sources\test-annotations
[DEBUG] (f) optimize = false
[DEBUG] (f) outputDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes
[DEBUG] (f) outputFileName = performance-1.0.0-SNAPSHOT
[DEBUG] (f) session = org.apache.maven.execution.MavenSession@7e4f101b
[DEBUG] (f) showDeprecation = false
[DEBUG] (f) showWarnings = false
[DEBUG] (f) source = 1.5
[DEBUG] (f) staleMillis = 0
[DEBUG] (f) target = 1.5
[DEBUG] (f) verbose = false
[DEBUG] – end configuration –
[DEBUG] Using compiler ‘javac’.
[DEBUG] Source directories: [C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\java]
[DEBUG] Classpath: [C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes
C:\application_build\Jenkins\jobs\Performance-test\workspace\target\classes
C:\Users\application_build.m2\repository\org\scala-lang\scala-library\2.11.8\scala-library-2.11.8.jar
C:\Users\application_build.m2\repository\io\gatling\highcharts\gatling-charts-highcharts\2.1.7\gatling-charts-highcharts-2.1.7.jar
C:\Users\application_build.m2\repository\io\gatling\gatling-charts\2.1.7\gatling-charts-2.1.7.jar
C:\Users\application_build.m2\repository\io\gatling\gatling-core\2.1.7\gatling-core-2.1.7.jar
C:\Users\application_build.m2\repository\org\scala-lang\scala-reflect\2.11.7\scala-reflect-2.11.7.jar
C:\Users\application_build.m2\repository\com\typesafe\akka\akka-actor_2.11\2.3.12\akka-actor_2.11-2.3.12.jar
C:\Users\application_build.m2\repository\com\typesafe\config\1.2.1\config-1.2.1.jar
C:\Users\application_build.m2\repository\com\dongxiguo\fastring_2.11\0.2.4\fastring_2.11-0.2.4.jar
C:\Users\application_build.m2\repository\net\sf\opencsv\opencsv\2.3\opencsv-2.3.jar
C:\Users\application_build.m2\repository\com\googlecode\concurrentlinkedhashmap\concurrentlinkedhashmap-lru\1.4.2\concurrentlinkedhashmap-lru-1.4.2.jar
C:\Users\application_build.m2\repository\org\threeten\threetenbp\1.2\threetenbp-1.2.jar
C:\Users\application_build.m2\repository\org\scala-lang\modules\scala-parser-combinators_2.11\1.0.4\scala-parser-combinators_2.11-1.0.4.jar
C:\Users\application_build.m2\repository\com\ning\async-http-client\1.9.30\async-http-client-1.9.30.jar
C:\Users\application_build.m2\repository\org\slf4j\slf4j-api\1.7.12\slf4j-api-1.7.12.jar
C:\Users\application_build.m2\repository\com\typesafe\scala-logging\scala-logging_2.11\3.1.0\scala-logging_2.11-3.1.0.jar
C:\Users\application_build.m2\repository\ch\qos\logback\logback-classic\1.1.3\logback-classic-1.1.3.jar
C:\Users\application_build.m2\repository\ch\qos\logback\logback-core\1.1.3\logback-core-1.1.3.jar
C:\Users\application_build.m2\repository\io\gatling\jsonpath_2.11\0.6.4\jsonpath_2.11-0.6.4.jar
C:\Users\application_build.m2\repository\io\fastjson\boon\0.33\boon-0.33.jar
C:\Users\application_build.m2\repository\net\sf\saxon\Saxon-HE\9.6.0-5\Saxon-HE-9.6.0-5.jar
C:\Users\application_build.m2\repository\org\jodd\jodd-lagarto\3.6.6\jodd-lagarto-3.6.6.jar
C:\Users\application_build.m2\repository\org\jodd\jodd-core\3.6.6\jodd-core-3.6.6.jar
C:\Users\application_build.m2\repository\org\jodd\jodd-log\3.6.6\jodd-log-3.6.6.jar
C:\Users\application_build.m2\repository\com\tdunning\t-digest\3.0\t-digest-3.0.jar
C:\Users\application_build.m2\repository\io\gatling\gatling-app\2.1.7\gatling-app-2.1.7.jar
C:\Users\application_build.m2\repository\io\gatling\gatling-http\2.1.7\gatling-http-2.1.7.jar
C:\Users\application_build.m2\repository\io\netty\netty\3.10.4.Final\netty-3.10.4.Final.jar
C:\Users\application_build.m2\repository\com\jcraft\jzlib\1.1.3\jzlib-1.1.3.jar
C:\Users\application_build.m2\repository\org\scala-lang\modules\scala-xml_2.11\1.0.4\scala-xml_2.11-1.0.4.jar
C:\Users\application_build.m2\repository\io\gatling\gatling-jms\2.1.7\gatling-jms-2.1.7.jar
C:\Users\application_build.m2\repository\org\apache\geronimo\specs\geronimo-jms_1.1_spec\1.1.1\geronimo-jms_1.1_spec-1.1.1.jar
C:\Users\application_build.m2\repository\io\gatling\gatling-jdbc\2.1.7\gatling-jdbc-2.1.7.jar
C:\Users\application_build.m2\repository\io\gatling\gatling-redis\2.1.7\gatling-redis-2.1.7.jar
C:\Users\application_build.m2\repository\net\debasishg\redisclient_2.11\2.14\redisclient_2.11-2.14.jar
C:\Users\application_build.m2\repository\commons-pool\commons-pool\1.6\commons-pool-1.6.jar
C:\Users\application_build.m2\repository\io\gatling\gatling-metrics\2.1.7\gatling-metrics-2.1.7.jar
C:\Users\application_build.m2\repository\com\github\scopt\scopt_2.11\3.3.0\scopt_2.11-3.3.0.jar
C:\Users\application_build.m2\repository\io\gatling\gatling-recorder\2.1.7\gatling-recorder-2.1.7.jar
C:\Users\application_build.m2\repository\org\scala-lang\modules\scala-swing_2.11\1.0.2\scala-swing_2.11-1.0.2.jar
C:\Users\application_build.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.6.0-rc1\jackson-databind-2.6.0-rc1.jar
C:\Users\application_build.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.6.0-rc1\jackson-annotations-2.6.0-rc1.jar
C:\Users\application_build.m2\repository\com\fasterxml\jackson\core\jackson-core\2.6.0-rc1\jackson-core-2.6.0-rc1.jar
C:\Users\application_build.m2\repository\org\bouncycastle\bcpkix-jdk15on\1.52\bcpkix-jdk15on-1.52.jar
C:\Users\application_build.m2\repository\org\bouncycastle\bcprov-jdk15on\1.52\bcprov-jdk15on-1.52.jar]
[DEBUG] Output directory: C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] — maven-scala-plugin:2.15.2:testCompile (default) @ performance —
[DEBUG] Configuring mojo org.scala-tools:maven-scala-plugin:2.15.2:testCompile from plugin realm ClassRealm[plugin>org.scala-tools:maven-scala-plugin:2.15.2, parent: sun.misc.Launcher$AppClassLoader@5c647e05]
[DEBUG] Configuring mojo ‘org.scala-tools:maven-scala-plugin:2.15.2:testCompile’ with basic configurator →
[DEBUG] (f) checkMultipleScalaVersions = true
[DEBUG] (f) displayCmd = false
[DEBUG] (f) failOnMultipleScalaVersions = false
[DEBUG] (f) forceUseArgFile = false
[DEBUG] (f) fork = true
[DEBUG] (f) jvmArgs = [-Xms64m, -Xmx1024m]
[DEBUG] (f) localRepo = id: local
url: file:///C:/Users/application_build/.m2/repository/
layout: none

[DEBUG] (f) localRepository = id: local
url: file:///C:/Users/application_build/.m2/repository/
layout: none

[DEBUG] (f) notifyCompilation = true
[DEBUG] (f) project = MavenProject: com.corporation.application_name.test:performance:1.0.0-SNAPSHOT @ C:\application_build\Jenkins\jobs\Performance-test\workspace\pom.xml
[DEBUG] (f) recompileMode = all
[DEBUG] (f) remoteRepos = [ id: nexus
url: http://jenkinsrepo/repository/maven-public/
layout: default
snapshots: [enabled => false, update => daily]
releases: [enabled => true, update => daily]
]
[DEBUG] (f) scalaClassName = scala.tools.nsc.Main
[DEBUG] (f) scalaVersion = 2.11.8
[DEBUG] (f) sendJavaToScalac = true
[DEBUG] (f) testOutputDir = C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes
[DEBUG] (f) testSourceDir = C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\java…\scala
[DEBUG] – end configuration –
[INFO] Checking for multiple versions of scala
[DEBUG] Dependency tree resolution listener events:
[DEBUG] testArtifact: artifact=com.corporation.application_name.test:performance:jar:1.0.0-SNAPSHOT
[DEBUG] includeArtifact: artifact=com.corporation.application_name.test:performance:jar:1.0.0-SNAPSHOT
[DEBUG] startProcessChildren: artifact=com.corporation.application_name.test:performance:jar:1.0.0-SNAPSHOT
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] includeArtifact: artifact=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] startProcessChildren: artifact=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] endProcessChildren: artifact=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling.highcharts:gatling-charts-highcharts:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling.highcharts:gatling-charts-highcharts:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling.highcharts:gatling-charts-highcharts:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-charts:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-charts:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-charts:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=org.scala-lang:scala-reflect:jar:2.11.7:test
[DEBUG] includeArtifact: artifact=org.scala-lang:scala-reflect:jar:2.11.7:test
[DEBUG] startProcessChildren: artifact=org.scala-lang:scala-reflect:jar:2.11.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] endProcessChildren: artifact=org.scala-lang:scala-reflect:jar:2.11.7:test
[DEBUG] testArtifact: artifact=com.typesafe.akka:akka-actor_2.11:jar:2.3.12:test
[DEBUG] includeArtifact: artifact=com.typesafe.akka:akka-actor_2.11:jar:2.3.12:test
[DEBUG] startProcessChildren: artifact=com.typesafe.akka:akka-actor_2.11:jar:2.3.12:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.5:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.5:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] includeArtifact: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] startProcessChildren: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] endProcessChildren: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] endProcessChildren: artifact=com.typesafe.akka:akka-actor_2.11:jar:2.3.12:test
[DEBUG] testArtifact: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] omitForNearer: omitted=com.typesafe:config:jar:1.2.1:test kept=com.typesafe:config:jar:1.2.1:test
[DEBUG] includeArtifact: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] startProcessChildren: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] endProcessChildren: artifact=com.typesafe:config:jar:1.2.1:test
[DEBUG] testArtifact: artifact=com.dongxiguo:fastring_2.11:jar:0.2.4:test
[DEBUG] includeArtifact: artifact=com.dongxiguo:fastring_2.11:jar:0.2.4:test
[DEBUG] startProcessChildren: artifact=com.dongxiguo:fastring_2.11:jar:0.2.4:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.0:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.0:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=org.scala-lang:scala-reflect:jar:2.11.0:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-reflect:jar:2.11.0:test kept=org.scala-lang:scala-reflect:jar:2.11.7:test
[DEBUG] endProcessChildren: artifact=com.dongxiguo:fastring_2.11:jar:0.2.4:test
[DEBUG] testArtifact: artifact=net.sf.opencsv:opencsv:jar:2.3:test
[DEBUG] includeArtifact: artifact=net.sf.opencsv:opencsv:jar:2.3:test
[DEBUG] startProcessChildren: artifact=net.sf.opencsv:opencsv:jar:2.3:test
[DEBUG] endProcessChildren: artifact=net.sf.opencsv:opencsv:jar:2.3:test
[DEBUG] testArtifact: artifact=com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test
[DEBUG] includeArtifact: artifact=com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test
[DEBUG] startProcessChildren: artifact=com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test
[DEBUG] endProcessChildren: artifact=com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test
[DEBUG] testArtifact: artifact=org.threeten:threetenbp:jar:1.2:test
[DEBUG] includeArtifact: artifact=org.threeten:threetenbp:jar:1.2:test
[DEBUG] startProcessChildren: artifact=org.threeten:threetenbp:jar:1.2:test
[DEBUG] endProcessChildren: artifact=org.threeten:threetenbp:jar:1.2:test
[DEBUG] testArtifact: artifact=org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.4:test
[DEBUG] includeArtifact: artifact=org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.4:test
[DEBUG] startProcessChildren: artifact=org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.4:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.6:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.6:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] endProcessChildren: artifact=org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.4:test
[DEBUG] testArtifact: artifact=com.ning:async-http-client:jar:1.9.30:test
[DEBUG] includeArtifact: artifact=com.ning:async-http-client:jar:1.9.30:test
[DEBUG] startProcessChildren: artifact=com.ning:async-http-client:jar:1.9.30:test
[DEBUG] testArtifact: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] includeArtifact: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] startProcessChildren: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] endProcessChildren: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] testArtifact: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] includeArtifact: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] startProcessChildren: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] endProcessChildren: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] endProcessChildren: artifact=com.ning:async-http-client:jar:1.9.30:test
[DEBUG] testArtifact: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] omitForNearer: omitted=org.slf4j:slf4j-api:jar:1.7.12:test kept=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] includeArtifact: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] startProcessChildren: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] endProcessChildren: artifact=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] testArtifact: artifact=com.typesafe.scala-logging:scala-logging_2.11:jar:3.1.0:test
[DEBUG] includeArtifact: artifact=com.typesafe.scala-logging:scala-logging_2.11:jar:3.1.0:test
[DEBUG] startProcessChildren: artifact=com.typesafe.scala-logging:scala-logging_2.11:jar:3.1.0:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.1:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.1:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=org.scala-lang:scala-reflect:jar:2.11.1:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-reflect:jar:2.11.1:test kept=org.scala-lang:scala-reflect:jar:2.11.7:test
[DEBUG] testArtifact: artifact=org.slf4j:slf4j-api:jar:1.7.7:test
[DEBUG] omitForNearer: omitted=org.slf4j:slf4j-api:jar:1.7.7:test kept=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] endProcessChildren: artifact=com.typesafe.scala-logging:scala-logging_2.11:jar:3.1.0:test
[DEBUG] testArtifact: artifact=ch.qos.logback:logback-classic:jar:1.1.3:test
[DEBUG] includeArtifact: artifact=ch.qos.logback:logback-classic:jar:1.1.3:test
[DEBUG] startProcessChildren: artifact=ch.qos.logback:logback-classic:jar:1.1.3:test
[DEBUG] testArtifact: artifact=ch.qos.logback:logback-core:jar:1.1.3:test
[DEBUG] includeArtifact: artifact=ch.qos.logback:logback-core:jar:1.1.3:test
[DEBUG] startProcessChildren: artifact=ch.qos.logback:logback-core:jar:1.1.3:test
[DEBUG] endProcessChildren: artifact=ch.qos.logback:logback-core:jar:1.1.3:test
[DEBUG] testArtifact: artifact=org.slf4j:slf4j-api:jar:1.7.7:test
[DEBUG] omitForNearer: omitted=org.slf4j:slf4j-api:jar:1.7.7:test kept=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] endProcessChildren: artifact=ch.qos.logback:logback-classic:jar:1.1.3:test
[DEBUG] testArtifact: artifact=io.gatling:jsonpath_2.11:jar:0.6.4:test
[DEBUG] includeArtifact: artifact=io.gatling:jsonpath_2.11:jar:0.6.4:test
[DEBUG] startProcessChildren: artifact=io.gatling:jsonpath_2.11:jar:0.6.4:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.6:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.6:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.3:test
[DEBUG] omitForNearer: omitted=org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.3:test kept=org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.4:test
[DEBUG] endProcessChildren: artifact=io.gatling:jsonpath_2.11:jar:0.6.4:test
[DEBUG] testArtifact: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] includeArtifact: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] startProcessChildren: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] testArtifact: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] includeArtifact: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] startProcessChildren: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] endProcessChildren: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] testArtifact: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] includeArtifact: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] startProcessChildren: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] endProcessChildren: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] endProcessChildren: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] testArtifact: artifact=io.fastjson:boon:jar:0.33:test
[DEBUG] includeArtifact: artifact=io.fastjson:boon:jar:0.33:test
[DEBUG] startProcessChildren: artifact=io.fastjson:boon:jar:0.33:test
[DEBUG] endProcessChildren: artifact=io.fastjson:boon:jar:0.33:test
[DEBUG] testArtifact: artifact=net.sf.saxon:Saxon-HE:jar:9.6.0-5:test
[DEBUG] includeArtifact: artifact=net.sf.saxon:Saxon-HE:jar:9.6.0-5:test
[DEBUG] startProcessChildren: artifact=net.sf.saxon:Saxon-HE:jar:9.6.0-5:test
[DEBUG] endProcessChildren: artifact=net.sf.saxon:Saxon-HE:jar:9.6.0-5:test
[DEBUG] testArtifact: artifact=org.jodd:jodd-lagarto:jar:3.6.6:test
[DEBUG] includeArtifact: artifact=org.jodd:jodd-lagarto:jar:3.6.6:test
[DEBUG] startProcessChildren: artifact=org.jodd:jodd-lagarto:jar:3.6.6:test
[DEBUG] testArtifact: artifact=org.jodd:jodd-core:jar:3.6.6:test
[DEBUG] includeArtifact: artifact=org.jodd:jodd-core:jar:3.6.6:test
[DEBUG] startProcessChildren: artifact=org.jodd:jodd-core:jar:3.6.6:test
[DEBUG] endProcessChildren: artifact=org.jodd:jodd-core:jar:3.6.6:test
[DEBUG] testArtifact: artifact=org.jodd:jodd-log:jar:3.6.6:test
[DEBUG] includeArtifact: artifact=org.jodd:jodd-log:jar:3.6.6:test
[DEBUG] startProcessChildren: artifact=org.jodd:jodd-log:jar:3.6.6:test
[DEBUG] endProcessChildren: artifact=org.jodd:jodd-log:jar:3.6.6:test
[DEBUG] endProcessChildren: artifact=org.jodd:jodd-lagarto:jar:3.6.6:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] testArtifact: artifact=com.tdunning:t-digest:jar:3.0:test
[DEBUG] includeArtifact: artifact=com.tdunning:t-digest:jar:3.0:test
[DEBUG] startProcessChildren: artifact=com.tdunning:t-digest:jar:3.0:test
[DEBUG] endProcessChildren: artifact=com.tdunning:t-digest:jar:3.0:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-charts:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-app:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-app:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-app:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-core:jar:2.1.7:test kept=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-http:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-http:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-http:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-core:jar:2.1.7:test kept=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] testArtifact: artifact=com.ning:async-http-client:jar:1.9.30:test
[DEBUG] omitForNearer: omitted=com.ning:async-http-client:jar:1.9.30:test kept=com.ning:async-http-client:jar:1.9.30:test
[DEBUG] testArtifact: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] omitForNearer: omitted=io.netty:netty:jar:3.10.4.Final:test kept=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] includeArtifact: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] startProcessChildren: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] endProcessChildren: artifact=io.netty:netty:jar:3.10.4.Final:test
[DEBUG] testArtifact: artifact=com.jcraft:jzlib:jar:1.1.3:test
[DEBUG] includeArtifact: artifact=com.jcraft:jzlib:jar:1.1.3:test
[DEBUG] startProcessChildren: artifact=com.jcraft:jzlib:jar:1.1.3:test
[DEBUG] endProcessChildren: artifact=com.jcraft:jzlib:jar:1.1.3:test
[DEBUG] testArtifact: artifact=org.scala-lang.modules:scala-xml_2.11:jar:1.0.4:test
[DEBUG] includeArtifact: artifact=org.scala-lang.modules:scala-xml_2.11:jar:1.0.4:test
[DEBUG] startProcessChildren: artifact=org.scala-lang.modules:scala-xml_2.11:jar:1.0.4:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.4:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.4:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] endProcessChildren: artifact=org.scala-lang.modules:scala-xml_2.11:jar:1.0.4:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-http:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-jms:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-jms:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-jms:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-core:jar:2.1.7:test kept=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:test
[DEBUG] includeArtifact: artifact=org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:test
[DEBUG] startProcessChildren: artifact=org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:test
[DEBUG] endProcessChildren: artifact=org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:test
[DEBUG] testArtifact: artifact=com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test
[DEBUG] omitForNearer: omitted=com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test kept=com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-jms:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-jdbc:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-jdbc:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-jdbc:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-core:jar:2.1.7:test kept=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-jdbc:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-redis:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-redis:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-redis:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-core:jar:2.1.7:test kept=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] testArtifact: artifact=net.debasishg:redisclient_2.11:jar:2.14:test
[DEBUG] includeArtifact: artifact=net.debasishg:redisclient_2.11:jar:2.14:test
[DEBUG] startProcessChildren: artifact=net.debasishg:redisclient_2.11:jar:2.14:test
[DEBUG] testArtifact: artifact=commons-pool:commons-pool:jar:1.6:test
[DEBUG] includeArtifact: artifact=commons-pool:commons-pool:jar:1.6:test
[DEBUG] startProcessChildren: artifact=commons-pool:commons-pool:jar:1.6:test
[DEBUG] endProcessChildren: artifact=commons-pool:commons-pool:jar:1.6:test
[DEBUG] testArtifact: artifact=org.slf4j:slf4j-api:jar:1.7.2:test
[DEBUG] omitForNearer: omitted=org.slf4j:slf4j-api:jar:1.7.2:test kept=org.slf4j:slf4j-api:jar:1.7.12:test
[DEBUG] testArtifact: artifact=com.typesafe.akka:akka-actor_2.11:jar:2.3.6:test
[DEBUG] omitForNearer: omitted=com.typesafe.akka:akka-actor_2.11:jar:2.3.6:test kept=com.typesafe.akka:akka-actor_2.11:jar:2.3.12:test
[DEBUG] endProcessChildren: artifact=net.debasishg:redisclient_2.11:jar:2.14:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-redis:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-metrics:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-metrics:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-metrics:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-core:jar:2.1.7:test kept=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] testArtifact: artifact=com.tdunning:t-digest:jar:3.0:test
[DEBUG] omitForNearer: omitted=com.tdunning:t-digest:jar:3.0:test kept=com.tdunning:t-digest:jar:3.0:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-metrics:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-charts:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-charts:jar:2.1.7:test kept=io.gatling:gatling-charts:jar:2.1.7:test
[DEBUG] testArtifact: artifact=com.github.scopt:scopt_2.11:jar:3.3.0:test
[DEBUG] includeArtifact: artifact=com.github.scopt:scopt_2.11:jar:3.3.0:test
[DEBUG] startProcessChildren: artifact=com.github.scopt:scopt_2.11:jar:3.3.0:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.4:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.4:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] endProcessChildren: artifact=com.github.scopt:scopt_2.11:jar:3.3.0:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-app:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-recorder:jar:2.1.7:test
[DEBUG] includeArtifact: artifact=io.gatling:gatling-recorder:jar:2.1.7:test
[DEBUG] startProcessChildren: artifact=io.gatling:gatling-recorder:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.7:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.7:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] testArtifact: artifact=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-core:jar:2.1.7:test kept=io.gatling:gatling-core:jar:2.1.7:test
[DEBUG] testArtifact: artifact=io.gatling:gatling-http:jar:2.1.7:test
[DEBUG] omitForNearer: omitted=io.gatling:gatling-http:jar:2.1.7:test kept=io.gatling:gatling-http:jar:2.1.7:test
[DEBUG] testArtifact: artifact=org.scala-lang.modules:scala-swing_2.11:jar:1.0.2:test
[DEBUG] includeArtifact: artifact=org.scala-lang.modules:scala-swing_2.11:jar:1.0.2:test
[DEBUG] startProcessChildren: artifact=org.scala-lang.modules:scala-swing_2.11:jar:1.0.2:test
[DEBUG] testArtifact: artifact=org.scala-lang:scala-library:jar:2.11.0:test
[DEBUG] omitForNearer: omitted=org.scala-lang:scala-library:jar:2.11.0:test kept=org.scala-lang:scala-library:jar:2.11.8:compile
[DEBUG] endProcessChildren: artifact=org.scala-lang.modules:scala-swing_2.11:jar:1.0.2:test
[DEBUG] testArtifact: artifact=com.github.scopt:scopt_2.11:jar:3.3.0:test
[DEBUG] omitForNearer: omitted=com.github.scopt:scopt_2.11:jar:3.3.0:test kept=com.github.scopt:scopt_2.11:jar:3.3.0:test
[DEBUG] testArtifact: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] omitForNearer: omitted=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test kept=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] includeArtifact: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] startProcessChildren: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] testArtifact: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] includeArtifact: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] startProcessChildren: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] endProcessChildren: artifact=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test
[DEBUG] testArtifact: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] includeArtifact: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] startProcessChildren: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] endProcessChildren: artifact=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test
[DEBUG] endProcessChildren: artifact=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test
[DEBUG] testArtifact: artifact=org.bouncycastle:bcpkix-jdk15on:jar:1.52:test
[DEBUG] includeArtifact: artifact=org.bouncycastle:bcpkix-jdk15on:jar:1.52:test
[DEBUG] startProcessChildren: artifact=org.bouncycastle:bcpkix-jdk15on:jar:1.52:test
[DEBUG] testArtifact: artifact=org.bouncycastle:bcprov-jdk15on:jar:1.52:test
[DEBUG] includeArtifact: artifact=org.bouncycastle:bcprov-jdk15on:jar:1.52:test
[DEBUG] startProcessChildren: artifact=org.bouncycastle:bcprov-jdk15on:jar:1.52:test
[DEBUG] endProcessChildren: artifact=org.bouncycastle:bcprov-jdk15on:jar:1.52:test
[DEBUG] endProcessChildren: artifact=org.bouncycastle:bcpkix-jdk15on:jar:1.52:test
[DEBUG] endProcessChildren: artifact=io.gatling:gatling-recorder:jar:2.1.7:test
[DEBUG] endProcessChildren: artifact=io.gatling.highcharts:gatling-charts-highcharts:jar:2.1.7:test
[DEBUG] endProcessChildren: artifact=com.corporation.application_name.test:performance:jar:1.0.0-SNAPSHOT
[DEBUG] checking [com.corporation.application_name.test:performance:jar:1.0.0-SNAPSHOT] for scala version
[DEBUG] checking [org.scala-lang:scala-library:jar:2.11.8:compile] for scala version
[DEBUG] checking [io.gatling.highcharts:gatling-charts-highcharts:jar:2.1.7:test] for scala version
[DEBUG] checking [org.scala-lang:scala-library:jar:2.11.7:test] for scala version
[WARNING] Expected all dependencies to require Scala version: 2.11.8
[WARNING] com.corporation.application_name.test:performance:1.0.0-SNAPSHOT requires scala version: 2.11.8
[WARNING] io.gatling.highcharts:gatling-charts-highcharts:2.1.7 requires scala version: 2.11.7
[WARNING] Multiple versions of scala libraries detected!
[DEBUG] C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\java
[INFO] includes = [/*.java,/*.scala,]
[INFO] excludes = []
[INFO] C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\java:-1: info: compiling
[INFO] Compiling 15 source files to C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes at 1458910932941
[DEBUG] use java command with args in file forced : false
[DEBUG] plugin jar to add :C:\Users\application_build.m2\repository\org\scala-tools\maven-scala-plugin\2.15.2\maven-scala-plugin-2.15.2.jar
[DEBUG] cmd: C:\jdk1.8.0_31\jre\bin\java -classpath C:\Users\application_build.m2\repository\org\scala-lang\scala-compiler\2.11.8\scala-compiler-2.11.8.jar;C:\Users\application_build.m2\repository\org\scala-lang\modules\scala-parser-combinators_2.11\1.0.4\scala-parser-combinators_2.11-1.0.4.jar;C:\Users\application_build.m2\repository\org\scala-lang\scala-library\2.11.6\scala-library-2.11.6.jar;C:\Users\application_build.m2\repository\org\scala-lang\scala-library\2.11.4\scala-library-2.11.4.jar;C:\Users\application_build.m2\repository\org\scala-lang\scala-library\2.11.8\scala-library-2.11.8.jar;C:\Users\application_build.m2\repository\org\scala-lang\modules\scala-xml_2.11\1.0.4\scala-xml_2.11-1.0.4.jar;C:\Users\application_build.m2\repository\org\scala-lang\scala-reflect\2.11.8\scala-reflect-2.11.8.jar;C:\Users\application_build.m2\repository\org\scala-tools\maven-scala-plugin\2.15.2\maven-scala-plugin-2.15.2.jar -Xbootclasspath/a:C:\Users\application_build.m2\repository\org\scala-lang\scala-library\2.11.8\scala-library-2.11.8.jar -Xms64m -Xmx1024m org_scala_tools_maven_executions.MainWithArgsInFile scala.tools.nsc.Main C:\Users\application_build\AppData\Local\Temp\scala-maven-6230558061263466868.args
[WARNING] warning: there were four feature warnings; re-run with -feature for details
[WARNING] one warning found
[INFO] prepare-compile in 0 s
[INFO] compile in 22 s
[INFO]
[INFO] — maven-surefire-plugin:2.10:test (default-test) @ performance —
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for central (http://repo.maven.apache.org/maven2).
[DEBUG] org.apache.maven.plugins:maven-surefire-plugin:jar:2.10:
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.9:compile
[DEBUG] org.apache.maven.surefire:surefire-booter:jar:2.10:compile
[DEBUG] org.apache.maven.surefire:surefire-api:jar:2.10:compile
[DEBUG] org.apache.maven.surefire:maven-surefire-common:jar:2.10:compile
[DEBUG] org.apache.maven.shared:maven-common-artifact-filters:jar:1.3:compile
[DEBUG] org.codehaus.plexus:plexus-utils:jar:2.1:compile
[DEBUG] org.apache.maven:maven-artifact:jar:2.0.9:compile
[DEBUG] org.apache.maven:maven-project:jar:2.0.9:compile
[DEBUG] org.apache.maven:maven-settings:jar:2.0.9:compile
[DEBUG] org.apache.maven:maven-profile:jar:2.0.9:compile
[DEBUG] org.apache.maven:maven-model:jar:2.0.9:compile
[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.9:compile
[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.9:compile
[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
[DEBUG] junit:junit:jar:3.8.1:test (scope managed from compile)
[DEBUG] org.apache.maven:maven-core:jar:2.0.9:compile
[DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.9:compile
[DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.0.9:compile
[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.9:compile
[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.0.9:compile
[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.0.9:compile
[DEBUG] org.apache.maven:maven-monitor:jar:2.0.9:compile
[DEBUG] classworlds:classworlds:jar:1.1:compile
[DEBUG] org.apache.maven:maven-toolchain:jar:2.0.9:compile
[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.10
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.10
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.10
[DEBUG] Included: org.apache.maven.plugins:maven-surefire-plugin:jar:2.10
[DEBUG] Included: org.apache.maven.surefire:surefire-booter:jar:2.10
[DEBUG] Included: org.apache.maven.surefire:surefire-api:jar:2.10
[DEBUG] Included: org.apache.maven.surefire:maven-surefire-common:jar:2.10
[DEBUG] Included: org.apache.maven.shared:maven-common-artifact-filters:jar:1.3
[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.1
[DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.9
[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.9
[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.9
[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.9
[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.9
[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.9
[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.9
[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.9
[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.9
[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
[DEBUG] Excluded: junit:junit:jar:3.8.1
[DEBUG] Excluded: org.apache.maven:maven-core:jar:2.0.9
[DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.9
[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.9
[DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.9
[DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.9
[DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.0.9
[DEBUG] Excluded: classworlds:classworlds:jar:1.1
[DEBUG] Excluded: org.apache.maven:maven-toolchain:jar:2.0.9
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-surefire-plugin:2.10:test from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-surefire-plugin:2.10, parent: sun.misc.Launcher$AppClassLoader@5c647e05]
[DEBUG] Configuring mojo ‘org.apache.maven.plugins:maven-surefire-plugin:2.10:test’ with basic configurator →
[DEBUG] (s) basedir = C:\application_build\Jenkins\jobs\Performance-test\workspace
[DEBUG] (s) childDelegation = false
[DEBUG] (s) classesDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace\target\classes
[DEBUG] (s) disableXmlReport = false
[DEBUG] (s) enableAssertions = true
[DEBUG] (s) forkMode = once
[DEBUG] (s) junitArtifactName = junit:junit
[DEBUG] (s) localRepository = id: local
url: file:///C:/Users/application_build/.m2/repository/
layout: none

[DEBUG] (f) parallelMavenExecution = false
[DEBUG] (s) perCoreThreadCount = true
[DEBUG] (s) pluginArtifactMap = {org.apache.maven.plugins:maven-surefire-plugin=org.apache.maven.plugins:maven-surefire-plugin:maven-plugin:2.10:, org.apache.maven.surefire:surefire-booter=org.apache.maven.surefire:surefire-booter:jar:2.10:compile, org.apache.maven.surefire:surefire-api=org.apache.maven.surefire:surefire-api:jar:2.10:compile, org.apache.maven.surefire:maven-surefire-common=org.apache.maven.surefire:maven-surefire-common:jar:2.10:compile, org.apache.maven.shared:maven-common-artifact-filters=org.apache.maven.shared:maven-common-artifact-filters:jar:1.3:compile, org.codehaus.plexus:plexus-utils=org.codehaus.plexus:plexus-utils:jar:2.1:compile, org.apache.maven.reporting:maven-reporting-api=org.apache.maven.reporting:maven-reporting-api:jar:2.0.9:compile}
[DEBUG] (s) printSummary = true
[DEBUG] (s) project = MavenProject: com.corporation.application_name.test:performance:1.0.0-SNAPSHOT @ C:\application_build\Jenkins\jobs\Performance-test\workspace\pom.xml
[DEBUG] (s) projectArtifactMap = {org.scala-lang:scala-library=org.scala-lang:scala-library:jar:2.11.8:compile, io.gatling.highcharts:gatling-charts-highcharts=io.gatling.highcharts:gatling-charts-highcharts:jar:2.1.7:test, io.gatling:gatling-charts=io.gatling:gatling-charts:jar:2.1.7:test, io.gatling:gatling-core=io.gatling:gatling-core:jar:2.1.7:test, org.scala-lang:scala-reflect=org.scala-lang:scala-reflect:jar:2.11.7:test, com.typesafe.akka:akka-actor_2.11=com.typesafe.akka:akka-actor_2.11:jar:2.3.12:test, com.typesafe:config=com.typesafe:config:jar:1.2.1:test, com.dongxiguo:fastring_2.11=com.dongxiguo:fastring_2.11:jar:0.2.4:test, net.sf.opencsv:opencsv=net.sf.opencsv:opencsv:jar:2.3:test, com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru=com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:test, org.threeten:threetenbp=org.threeten:threetenbp:jar:1.2:test, org.scala-lang.modules:scala-parser-combinators_2.11=org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.4:test, com.ning:async-http-client=com.ning:async-http-client:jar:1.9.30:test, org.slf4j:slf4j-api=org.slf4j:slf4j-api:jar:1.7.12:test, com.typesafe.scala-logging:scala-logging_2.11=com.typesafe.scala-logging:scala-logging_2.11:jar:3.1.0:test, ch.qos.logback:logback-classic=ch.qos.logback:logback-classic:jar:1.1.3:test, ch.qos.logback:logback-core=ch.qos.logback:logback-core:jar:1.1.3:test, io.gatling:jsonpath_2.11=io.gatling:jsonpath_2.11:jar:0.6.4:test, io.fastjson:boon=io.fastjson:boon:jar:0.33:test, net.sf.saxon:Saxon-HE=net.sf.saxon:Saxon-HE:jar:9.6.0-5:test, org.jodd:jodd-lagarto=org.jodd:jodd-lagarto:jar:3.6.6:test, org.jodd:jodd-core=org.jodd:jodd-core:jar:3.6.6:test, org.jodd:jodd-log=org.jodd:jodd-log:jar:3.6.6:test, com.tdunning:t-digest=com.tdunning:t-digest:jar:3.0:test, io.gatling:gatling-app=io.gatling:gatling-app:jar:2.1.7:test, io.gatling:gatling-http=io.gatling:gatling-http:jar:2.1.7:test, io.netty:netty=io.netty:netty:jar:3.10.4.Final:test, com.jcraft:jzlib=com.jcraft:jzlib:jar:1.1.3:test, org.scala-lang.modules:scala-xml_2.11=org.scala-lang.modules:scala-xml_2.11:jar:1.0.4:test, io.gatling:gatling-jms=io.gatling:gatling-jms:jar:2.1.7:test, org.apache.geronimo.specs:geronimo-jms_1.1_spec=org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:test, io.gatling:gatling-jdbc=io.gatling:gatling-jdbc:jar:2.1.7:test, io.gatling:gatling-redis=io.gatling:gatling-redis:jar:2.1.7:test, net.debasishg:redisclient_2.11=net.debasishg:redisclient_2.11:jar:2.14:test, commons-pool:commons-pool=commons-pool:commons-pool:jar:1.6:test, io.gatling:gatling-metrics=io.gatling:gatling-metrics:jar:2.1.7:test, com.github.scopt:scopt_2.11=com.github.scopt:scopt_2.11:jar:3.3.0:test, io.gatling:gatling-recorder=io.gatling:gatling-recorder:jar:2.1.7:test, org.scala-lang.modules:scala-swing_2.11=org.scala-lang.modules:scala-swing_2.11:jar:1.0.2:test, com.fasterxml.jackson.core:jackson-databind=com.fasterxml.jackson.core:jackson-databind:jar:2.6.0-rc1:test, com.fasterxml.jackson.core:jackson-annotations=com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0-rc1:test, com.fasterxml.jackson.core:jackson-core=com.fasterxml.jackson.core:jackson-core:jar:2.6.0-rc1:test, org.bouncycastle:bcpkix-jdk15on=org.bouncycastle:bcpkix-jdk15on:jar:1.52:test, org.bouncycastle:bcprov-jdk15on=org.bouncycastle:bcprov-jdk15on:jar:1.52:test}
[DEBUG] (s) redirectTestOutputToFile = false
[DEBUG] (s) remoteRepositories = [ id: nexus
url: http://jenkinsrepo/repository/maven-public/
layout: default
snapshots: [enabled => false, update => daily]
releases: [enabled => true, update => never]
]
[DEBUG] (s) reportFormat = brief
[DEBUG] (s) reportsDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace\target\surefire-reports
[DEBUG] (s) runOrder = filesystem
[DEBUG] (s) session = org.apache.maven.execution.MavenSession@7e4f101b
[DEBUG] (s) skip = false
[DEBUG] (s) skipTests = false
[DEBUG] (s) testClassesDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes
[DEBUG] (s) testFailureIgnore = true
[DEBUG] (s) testNGArtifactName = org.testng:testng
[DEBUG] (s) testSourceDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace\src\test\java
[DEBUG] (s) trimStackTrace = true
[DEBUG] (s) useFile = true
[DEBUG] (s) useManifestOnlyJar = true
[DEBUG] (s) useSystemClassLoader = true
[DEBUG] (s) useUnlimitedThreads = false
[DEBUG] (s) workingDirectory = C:\application_build\Jenkins\jobs\Performance-test\workspace
[DEBUG] – end configuration –
[INFO] Surefire report directory: C:\application_build\Jenkins\jobs\Performance-test\workspace\target\surefire-reports
[DEBUG] dummy:dummy:jar:1.0 (selected for null)
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] org.apache.maven.surefire:surefire-booter:jar:2.10:compile (selected for compile)
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] org.apache.maven.surefire:surefire-api:jar:2.10:compile (selected for compile)
[DEBUG] Adding to surefire booter test classpath: C:\Users\application_build.m2\repository\org\apache\maven\surefire\surefire-booter\2.10\surefire-booter-2.10.jar Scope: compile
[DEBUG] Adding to surefire booter test classpath: C:\Users\application_build.m2\repository\org\apache\maven\surefire\surefire-api\2.10\surefire-api-2.10.jar Scope: compile
[DEBUG] Setting system property [startFromReqPerSec]=[10]
[DEBUG] Setting system property [user.dir]=[C:\application_build\Jenkins\jobs\Performance-test\workspace]
[DEBUG] Setting system property [noOfRequests]=[10]
[DEBUG] Setting system property [baseUrl]=[http://corporation.com]
[DEBUG] Setting system property [maxReqPerSec]=[10]
[DEBUG] Setting system property [localRepository]=[C:\Users\application_build.m2\repository]
[DEBUG] Setting system property [basedir]=[C:\application_build\Jenkins\jobs\Performance-test\workspace]
[DEBUG] Using JVM: C:\jdk1.8.0_31\jre\bin\java
[DEBUG] dummy:dummy:jar:1.0 (selected for null)
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] org.apache.maven.surefire:surefire-junit3:jar:2.10:test (selected for test)
[DEBUG] Using mirror nexus (http://jenkinsrepo/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots).
[DEBUG] org.apache.maven.surefire:surefire-api:jar:2.10:test (selected for test)
[DEBUG] Adding to surefire test classpath: C:\Users\application_build.m2\repository\org\apache\maven\surefire\surefire-junit3\2.10\surefire-junit3-2.10.jar Scope: test
[DEBUG] Adding to surefire test classpath: C:\Users\application_build.m2\repository\org\apache\maven\surefire\surefire-api\2.10\surefire-api-2.10.jar Scope: test
[DEBUG] test classpath classpath:
[DEBUG] C:\application_build\Jenkins\jobs\Performance-test\workspace\target\test-classes
[DEBUG] C:\application_build\Jenkins\jobs\Performance-test\workspace\target\classes
[DEBUG] C:\Users\application_build.m2\repository\org\scala-lang\scala-library\2.11.8\scala-library-2.11.8.jar
[DEBUG] C:\Users\application_build.m2\repository\io\gatling\highcharts\gatling-charts-highcharts\2.1.7\gatling-charts-highcharts-2.1.7.jar
[DEBUG] C:\Users\application_build.m2\repository\io\gatling\gatling-charts\2.1.7\gatling-charts-2.1.7.jar
[DEBUG] C:\Users\application_build.m2\repository\io\gatling\gatling-core\2.1.7\gatling-core-2.1.7.jar
[DEBUG] C:\Users\application_build.m2\repository\org\scala-lang\scala-reflect\2.11.7\scala-reflect-2.11.7.jar
[DEBUG] C:\Users\application_build.m2\repository\com\typesafe\akka\akka-actor_2.11\2.3.12\akka-actor_2.11-2.3.12.jar
[DEBUG] C:\Users\application_build.m2\repository\com\typesafe\config\1.2.1\config-1.2.1.jar
[DEBUG] C:\Users\application_build.m2\repository\com\dongxiguo\fastring_2.11\0.2.4\fastring_2.11-0.2.4.jar
[DEBUG] C:\Users\application_build.m2\repository\net\sf\opencsv\opencsv\2.3\opencsv-2.3.jar
[DEBUG] C:\Users\application_build.m2\repository\com\googlecode\concurrentlinkedhashmap\concurrentlinkedhashmap-lru\1.4.2\concurrentlinkedhashmap-lru-1.4.2.jar
[DEBUG] C:\Users\application_build.m2\repository\org\threeten\threetenbp\1.2\threetenbp-1.2.jar
[DEBUG] C:\Users\application_build.m2\repository\org\scala-lang\modules\scala-parser-combinators_2.11\1.0.4\scala-parser-combinators_2.11-1.0.4.jar
[DEBUG] C:\Users\application_build.m2\repository\com\ning\async-http-client\1.9.30\async-http-client-1.9.30.jar
[DEBUG] C:\Users\application_build.m2\repository\org\slf4j\slf4j-api\1.7.12\slf4j-api-1.7.12.jar
[DEBUG] C:\Users\application_build.m2\repository\com\typesafe\scala-logging\scala-logging_2.11\3.1.0\scala-logging_2.11-3.1.0.jar
[DEBUG] C:\Users\application_build.m2\repository\ch\qos\logback\logback-classic\1.1.3\logback-classic-1.1.3.jar
[DEBUG] C:\Users\application_build.m2\repository\ch\qos\logback\logback-core\1.1.3\logback-core-1.1.3.jar
[DEBUG] C:\Users\application_build.m2\repository\io\gatling\jsonpath_2.11\0.6.4\jsonpath_2.11-0.6.4.jar
[DEBUG] C:\Users\application_build.m2\repository\io\fastjson\boon\0.33\boon-0.33.jar
[DEBUG] C:\Users\application_build.m2\repository\net\sf\saxon\Saxon-HE\9.6.0-5\Saxon-HE-9.6.0-5.jar
[DEBUG] C:\Users\application_build.m2\repository\org\jodd\jodd-lagarto\3.6.6\jodd-lagarto-3.6.6.jar
[DEBUG] C:\Users\application_build.m2\repository\org\jodd\jodd-core\3.6.6\jodd-core-3.6.6.jar
[DEBUG] C:\Users\application_build.m2\repository\org\jodd\jodd-log\3.6.6\jodd-log-3.6.6.jar
[DEBUG] C:\Users\application_build.m2\repository\com\tdunning\t-digest\3.0\t-digest-3.0.jar
[DEBUG] C:\Users\application_build.m2\repository\io\gatling\gatling-app\2.1.7\gatling-app-2.1.7.jar
[DEBUG] C:\Users\application_build.m2\repository\io\gatling\gatling-http\2.1.7\gatling-http-2.1.7.jar
[DEBUG] C:\Users\application_build.m2\repository\io\netty\netty\3.10.4.Final\netty-3.10.4.Final.jar
[DEBUG] C:\Users\application_build.m2\repository\com\jcraft\jzlib\1.1.3\jzlib-1.1.3.jar
[DEBUG] C:\Users\application_build.m2\repository\org\scala-lang\modules\scala-xml_2.11\1.0.4\scala-xml_2.11-1.0.4.jar
[DEBUG] C:\Users\application_build.m2\repository\io\gatling\gatling-jms\2.1.7\gatling-jms-2.1.7.jar
[DEBUG] C:\Users\application_build.m2\repository\org\apache\geronimo\specs\geronimo-jms_1.1_spec\1.1.1\geronimo-jms_1.1_spec-1.1.1.jar
[DEBUG] C:\Users\application_build.m2\repository\io\gatling\gatling-jdbc\2.1.7\gatling-jdbc-2.1.7.jar
[DEBUG] C:\Users\application_build.m2\repository\io\gatling\gatling-redis\2.1.7\gatling-redis-2.1.7.jar
[DEBUG] C:\Users\application_build.m2\repository\net\debasishg\redisclient_2.11\2.14\redisclient_2.11-2.14.jar
[DEBUG] C:\Users\application_build.m2\repository\commons-pool\commons-pool\1.6\commons-pool-1.6.jar
[DEBUG] C:\Users\application_build.m2\repository\io\gatling\gatling-metrics\2.1.7\gatling-metrics-2.1.7.jar
[DEBUG] C:\Users\application_build.m2\repository\com\github\scopt\scopt_2.11\3.3.0\scopt_2.11-3.3.0.jar
[DEBUG] C:\Users\application_build.m2\repository\io\gatling\gatling-recorder\2.1.7\gatling-recorder-2.1.7.jar
[DEBUG] C:\Users\application_build.m2\repository\org\scala-lang\modules\scala-swing_2.11\1.0.2\scala-swing_2.11-1.0.2.jar
[DEBUG] C:\Users\application_build.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.6.0-rc1\jackson-databind-2.6.0-rc1.jar
[DEBUG] C:\Users\application_build.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.6.0-rc1\jackson-annotations-2.6.0-rc1.jar
[DEBUG] C:\Users\application_build.m2\repository\com\fasterxml\jackson\core\jackson-core\2.6.0-rc1\jackson-core-2.6.0-rc1.jar
[DEBUG] C:\Users\application_build.m2\repository\org\bouncycastle\bcpkix-jdk15on\1.52\bcpkix-jdk15on-1.52.jar
[DEBUG] C:\Users\application_build.m2\repository\org\bouncycastle\bcprov-jdk15on\1.52\bcprov-jdk15on-1.52.jar
[DEBUG] provider classpath classpath:
[DEBUG] C:\Users\application_build.m2\repository\org\apache\maven\surefire\surefire-junit3\2.10\surefire-junit3-2.10.jar
[DEBUG] C:\Users\application_build.m2\repository\org\apache\maven\surefire\surefire-api\2.10\surefire-api-2.10.jar

no idea…