-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
115 lines (112 loc) · 5.6 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.asanka.perfromance</groupId>
<artifactId>ondemandJmeterPerfTest</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>ondemandJmeterPerfTest</name>
<url>http://maven.apache.org</url>
<dependencies>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-maven-plugin</artifactId>
<version>2.8.5</version>
<executions>
<!-- Run JMeter tests -->
<execution>
<id>jmeter-tests</id>
<phase>verify</phase>
<goals>
<goal>jmeter</goal>
</goals>
</execution>
<!-- <execution>-->
<!-- <id>jmeter-check-results</id>-->
<!-- <goals>-->
<!-- <goal>results</goal>-->
<!-- </goals>-->
<!-- </execution>-->
</executions>
<dependencies>
<dependency>
<groupId>kg.apc</groupId>
<artifactId>jmeter-plugins-extras-libs</artifactId>
<version>1.4.0</version>
</dependency>
</dependencies>
<configuration>
<jmeterVersion>5.1.1</jmeterVersion>
<jMeterProcessJVMSettings>
<xms>${xms.setting}</xms>
<xmx>${xmx.setting}</xmx>
<arguments>
<argument>-Xprof</argument>
<argument>-Xfuture</argument>
</arguments>
</jMeterProcessJVMSettings>
<testFilesIncluded>
<jMeterTestFile>httpCounterDocker.jmx</jMeterTestFile>
</testFilesIncluded>
<remoteConfig>
<startServersBeforeTests>true</startServersBeforeTests>
<!-- <stopServersAfterTests>true</stopServersAfterTests>-->
<serverList>${jenkinsSlaveNodes}</serverList>
</remoteConfig>
<propertiesJMeter>
<!-- <remote_hosts>${host}</remote_hosts>-->
<client.rmi.localport>1099</client.rmi.localport>
<https.socket.protocols>TLSv1.2</https.socket.protocols>
</propertiesJMeter>
<propertiesGlobal>
<serverURL>${serverURL}</serverURL>
<serverPortHTTP>${serverPortHTTP}</serverPortHTTP>
<serverPortHTTPS>${serverPortHTTPS}</serverPortHTTPS>
<protocolHTTP>${protocolHTTP}</protocolHTTP>
<protocolHTTPS>${protocolHTTPS}</protocolHTTPS>
<apiServerURL>${apiServerURL}</apiServerURL>
<pThinktime>${pThinktime}</pThinktime>
</propertiesGlobal>
<propertiesUser>
<server.rmi.ssl.disable>true</server.rmi.ssl.disable>
<httpsampler.ignore_failed_embedded_resources>true</httpsampler.ignore_failed_embedded_resources>
</propertiesUser>
<jmeterExtensions>
<artifact>kg.apc:jmeter-plugins-extras:1.4.0</artifact>
<artifact>kg.apc:jmeter-plugins-standard:1.4.0</artifact>
<artifact>kg.apc:jmeter-plugins-autostop:0.1</artifact>
<artifact>kg.apc:jmeter-plugins-casutg:2.9</artifact>
<artifact>kg.apc:jmeter-plugins-cmn-jmeter:0.6</artifact>
<artifact>kg.apc:jmeter-plugins-csvars:0.1</artifact>
<artifact>kg.apc:jmeter-plugins-functions:2.1</artifact>
<artifact>kg.apc:jmeter-plugins-manager:1.3</artifact>
<artifact>kg.apc:jmeter-plugins-perfmon:2.1</artifact>
<artifact>kg.apc:jmeter-plugins-prmctl:0.4</artifact>
<artifact>kg.apc:jmeter-plugins-tst:2.5</artifact>
<artifact>kg.apc:jmeter-plugins-webdriver:3.1</artifact>
<artifact>com.blazemeter:jmeter-parallel:0.9</artifact>
<artifact>com.sysco.qe:qperf_core:0.0.2</artifact>
</jmeterExtensions>
<!-- The plugin uses some broken dependencies
An alternative is to set this to true and use excludedArtifacts, see below
-->
<downloadExtensionDependencies>false</downloadExtensionDependencies>
<testResultsTimestamp>false</testResultsTimestamp>
<overrideRootLogLevel>debug</overrideRootLogLevel>
</configuration>
</plugin>
</plugins>
</build>
<organization>
</organization>
<properties>
<perf.testplan>*</perf.testplan>
<xms.setting>1024</xms.setting>
<xmx.setting>1024</xmx.setting>
</properties>
</project>