-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpom.xml
More file actions
91 lines (87 loc) · 2.8 KB
/
Copy pathpom.xml
File metadata and controls
91 lines (87 loc) · 2.8 KB
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
<?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">
<groupId>apl-performance-tests</groupId>
<artifactId>apl-performance-tests</artifactId>
<version>1</version>
<modelVersion>4.0.0</modelVersion>
<properties>
<aspectj.version>1.9.4</aspectj.version>
<custompeer>""</custompeer>
<test.env>n3</test.env>
<users>10</users>
<duration>1</duration>
<forging>false</forging>
<className></className>
</properties>
<dependencies>
<dependency>
<groupId>io.gatling.highcharts</groupId>
<artifactId>gatling-charts-highcharts</artifactId>
<version>3.3.0</version>
</dependency>
<dependency>
<groupId>com.typesafe</groupId>
<artifactId>config</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>org.scalaj</groupId>
<artifactId>scalaj-http_2.12</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.10.0.pr3</version>
</dependency>
<dependency>
<groupId>com.apollocurrency</groupId>
<artifactId>apl-crypto</artifactId>
<version>1.45.3</version>
</dependency>
<dependency>
<groupId>com.apollocurrency</groupId>
<artifactId>apl-core</artifactId>
<version>1.45.3</version>
</dependency>
<dependency>
<groupId>com.apollocurrency</groupId>
<artifactId>apl-api</artifactId>
<version>1.45.3</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest-library -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.gatling</groupId>
<artifactId>gatling-maven-plugin</artifactId>
<version>3.0.4</version>
<configuration>
<runMultipleSimulations>true</runMultipleSimulations>
<simulationClass>${className}</simulationClass>
<jvmArgs>
<jvmArg>-Dusers=${users}</jvmArg>
<jvmArg>-Dduration=${duration}</jvmArg>
<jvmArg>-Dtest.env=${test.env}</jvmArg>
<jvmArg>-Dforging=${forging}</jvmArg>
<jvmArg>-Dcustompeer=${custompeer}</jvmArg>
</jvmArgs>
</configuration>
</plugin>
</plugins>
</build>
</project>