-
Notifications
You must be signed in to change notification settings - Fork 9
/
pom.xml
114 lines (109 loc) · 4.8 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
<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.petstore</groupId>
<artifactId>karate-tests</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
<karate.version>1.3.0</karate.version>
<apimock.version>0.1.3</apimock.version>
</properties>
<dependencies>
<dependency>
<groupId>io.github.zenwave360</groupId>
<artifactId>zenwave-apimock</artifactId>
<version>${apimock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-core</artifactId>
<version>${karate.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-junit5</artifactId>
<version>${karate.version}</version>
<scope>test</scope>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.2.18.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.2.18.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>1.6.3</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- <build>-->
<!-- <plugins>-->
<!-- <plugin>-->
<!-- <groupId>org.openapitools</groupId>-->
<!-- <artifactId>openapi-generator-maven-plugin</artifactId>-->
<!-- <version>5.3.0</version>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>generate-rest-api</id>-->
<!-- <phase>generate-test-sources</phase>-->
<!-- <goals>-->
<!-- <goal>generate</goal>-->
<!-- </goals>-->
<!-- <configuration>-->
<!-- <skip>true</skip>-->
<!-- <inputSpec>petstore-openapi.yml</inputSpec>-->
<!-- <generatorName>java</generatorName>-->
<!-- <modelNameSuffix>Dto</modelNameSuffix>-->
<!-- <generateApiTests>false</generateApiTests>-->
<!-- <generateModelTests>false</generateModelTests>-->
<!-- <library>resttemplate</library>-->
<!-- <addCompileSourceRoot>false</addCompileSourceRoot>-->
<!-- <addTestCompileSourceRoot>true</addTestCompileSourceRoot>-->
<!-- <configOptions>-->
<!-- <basePackage>com.petstore.client</basePackage>-->
<!-- <modelPackage>com.petstore.client.model</modelPackage>-->
<!-- <apiPackage>com.petstore.client.api</apiPackage>-->
<!-- <configPackage>com.petstore.client.config</configPackage>-->
<!-- <dateLibrary>java8</dateLibrary>-->
<!-- </configOptions>-->
<!-- </configuration>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<!-- </plugins>-->
<!-- </build>-->
</project>