minor scala and gatling upgrades
This commit is contained in:
parent
bd6cc15ce7
commit
d205ffbc46
|
@ -13,10 +13,11 @@
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.source>1.8</maven.compiler.source>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||||||
<maven.compiler.target>1.8</maven.compiler.target>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
<scala.version>2.11.7</scala.version>
|
|
||||||
<encoding>UTF-8</encoding>
|
<encoding>UTF-8</encoding>
|
||||||
<gatling.version>2.2.0</gatling.version>
|
<scala.version>2.11.12</scala.version> <!--2.11.12--> <!--2.12.6-->
|
||||||
<scala-maven-plugin.version>3.2.2</scala-maven-plugin.version>
|
<gatling.version>2.2.5</gatling.version> <!--2.2.5--> <!--2.3.1-->
|
||||||
|
<scala-maven-plugin.version>3.2.2</scala-maven-plugin.version> <!--3.2.2--> <!--3.3.2-->
|
||||||
|
<gatling-maven-plugin.version>2.2.1</gatling-maven-plugin.version> <!--2.2.1--> <!--2.2.4-->
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
|
@ -85,7 +86,7 @@
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<args>
|
<args>
|
||||||
<arg>-Ybackend:GenBCode</arg>
|
<!--<arg>-Ybackend:GenBCode</arg>-->
|
||||||
<arg>-Ydelambdafy:method</arg>
|
<arg>-Ydelambdafy:method</arg>
|
||||||
<arg>-target:jvm-1.8</arg>
|
<arg>-target:jvm-1.8</arg>
|
||||||
<arg>-deprecation</arg>
|
<arg>-deprecation</arg>
|
||||||
|
@ -101,7 +102,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>io.gatling</groupId>
|
<groupId>io.gatling</groupId>
|
||||||
<artifactId>gatling-maven-plugin</artifactId>
|
<artifactId>gatling-maven-plugin</artifactId>
|
||||||
<version>${gatling.version}</version>
|
<version>${gatling-maven-plugin.version}</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<phase>test</phase>
|
<phase>test</phase>
|
||||||
|
|
|
@ -19,7 +19,6 @@ class RecordedSimulation extends Simulation {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
val scn = scenario("RecordedSimulation")
|
val scn = scenario("RecordedSimulation")
|
||||||
.exec(http("request_0")
|
.exec(http("request_0")
|
||||||
.get("/"))
|
.get("/"))
|
||||||
|
|
Loading…
Reference in New Issue