1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+ <parent >
8+ <groupId >us.abstracta.jmeter</groupId >
9+ <artifactId >jmeter-java-dsl-parent</artifactId >
10+ <version >0.1-SNAPSHOT</version >
11+ <relativePath >../pom.xml</relativePath >
12+ </parent >
13+ <artifactId >jmeter-java-dsl</artifactId >
14+ <version >0.1-SNAPSHOT</version >
15+
16+ <name >${project.artifactId} </name >
17+ <description >Simple API to run JMeter performance tests in an VCS and programmers friendly way.
18+ </description >
19+
20+ <properties >
21+ <jmeter .version>5.2.1</jmeter .version>
22+ </properties >
23+
24+ <dependencies >
25+ <dependency >
26+ <groupId >org.apache.jmeter</groupId >
27+ <artifactId >ApacheJMeter_http</artifactId >
28+ <version >${jmeter.version} </version >
29+ </dependency >
30+ <dependency >
31+ <groupId >org.apache.jmeter</groupId >
32+ <artifactId >ApacheJMeter_functions</artifactId >
33+ <version >${jmeter.version} </version >
34+ </dependency >
35+ <dependency >
36+ <groupId >org.eclipse.jetty</groupId >
37+ <artifactId >jetty-http</artifactId >
38+ <version >9.4.32.v20200930</version >
39+ </dependency >
40+
41+ <dependency >
42+ <groupId >org.junit.jupiter</groupId >
43+ <artifactId >junit-jupiter-engine</artifactId >
44+ <version >5.7.0</version >
45+ <scope >test</scope >
46+ </dependency >
47+ <dependency >
48+ <groupId >org.assertj</groupId >
49+ <artifactId >assertj-core</artifactId >
50+ <version >3.17.2</version >
51+ <scope >test</scope >
52+ </dependency >
53+ <dependency >
54+ <groupId >org.xmlunit</groupId >
55+ <artifactId >xmlunit-assertj</artifactId >
56+ <version >2.7.0</version >
57+ <scope >test</scope >
58+ </dependency >
59+ <dependency >
60+ <groupId >ru.lanwen.wiremock</groupId >
61+ <artifactId >wiremock-junit5</artifactId >
62+ <version >1.3.1</version >
63+ <scope >test</scope >
64+ </dependency >
65+ <dependency >
66+ <groupId >com.github.tomakehurst</groupId >
67+ <artifactId >wiremock-jre8</artifactId >
68+ <version >2.27.2</version >
69+ <scope >test</scope >
70+ </dependency >
71+ </dependencies >
72+
73+ </project >
0 commit comments