commit
bcd8625e9b
|
@ -48,8 +48,15 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>com.lazerycode.jmeter</groupId>
|
<groupId>com.lazerycode.jmeter</groupId>
|
||||||
<artifactId>jmeter-maven-plugin</artifactId>
|
<artifactId>jmeter-maven-plugin</artifactId>
|
||||||
<version>${jmeter.version}</version>
|
<version>3.7.0</version>
|
||||||
<executions>
|
<executions>
|
||||||
|
<!-- Generate JMeter configuration -->
|
||||||
|
<execution>
|
||||||
|
<id>configuration</id>
|
||||||
|
<goals>
|
||||||
|
<goal>configure</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
<execution>
|
<execution>
|
||||||
<id>jmeter-tests</id>
|
<id>jmeter-tests</id>
|
||||||
<goals>
|
<goals>
|
||||||
|
@ -66,7 +73,6 @@
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<jmeter.version>2.6.0</jmeter.version>
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
|
|
|
@ -57,7 +57,7 @@
|
||||||
<stringProp name="filename"></stringProp>
|
<stringProp name="filename"></stringProp>
|
||||||
<stringProp name="parameters"></stringProp>
|
<stringProp name="parameters"></stringProp>
|
||||||
<boolProp name="resetInterpreter">false</boolProp>
|
<boolProp name="resetInterpreter">false</boolProp>
|
||||||
<stringProp name="script">FileWriter fWriter = new FileWriter("<path>/result.txt", true);
|
<stringProp name="script">FileWriter fWriter = new FileWriter("<path>/result.txt", true);
|
||||||
BufferedWriter buff = new BufferedWriter(fWriter);
|
BufferedWriter buff = new BufferedWriter(fWriter);
|
||||||
|
|
||||||
buff.write("Response Code : " + ctx.getPreviousResult().getResponseCode());
|
buff.write("Response Code : " + ctx.getPreviousResult().getResponseCode());
|
||||||
|
|
|
@ -28,13 +28,13 @@
|
||||||
<groupId>javax.xml.bind</groupId>
|
<groupId>javax.xml.bind</groupId>
|
||||||
<artifactId>jaxb-api</artifactId>
|
<artifactId>jaxb-api</artifactId>
|
||||||
<version>${jaxb.version}</version>
|
<version>${jaxb.version}</version>
|
||||||
<scope>runtime</scope>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.glassfish.jaxb</groupId>
|
<groupId>org.glassfish.jaxb</groupId>
|
||||||
<artifactId>jaxb-runtime</artifactId>
|
<artifactId>jaxb-runtime</artifactId>
|
||||||
<version>${jaxb.version}</version>
|
<version>${jaxb.version}</version>
|
||||||
<scope>runtime</scope>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- SQLite database driver -->
|
<!-- SQLite database driver -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -42,6 +42,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.projectlombok</groupId>
|
<groupId>org.projectlombok</groupId>
|
||||||
<artifactId>lombok</artifactId>
|
<artifactId>lombok</artifactId>
|
||||||
|
<version>1.18.22</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.projectreactor</groupId>
|
<groupId>io.projectreactor</groupId>
|
||||||
|
|
Loading…
Reference in New Issue