1+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
3+ <modelVersion >4.0.0</modelVersion >
4+
5+ <groupId >org.evomaster</groupId >
6+ <artifactId >rest-api-example</artifactId >
7+
8+ <version >1.0.0-SNAPSHOT</version >
9+
10+ <properties >
11+ <version .spring>2.3.3.RELEASE</version .spring>
12+ </properties >
13+
14+
15+ <dependencies >
16+ <dependency >
17+ <groupId >org.springframework.boot</groupId >
18+ <artifactId >spring-boot-starter-web</artifactId >
19+ <version >${version.spring} </version >
20+ </dependency >
21+ <dependency >
22+ <groupId >org.springframework.boot</groupId >
23+ <artifactId >spring-boot-starter-data-jpa</artifactId >
24+ <version >${version.spring} </version >
25+ </dependency >
26+
27+ <!-- Needed to automatically generate the OpenAPI schema-->
28+ <dependency >
29+ <groupId >io.springfox</groupId >
30+ <artifactId >springfox-boot-starter</artifactId >
31+ <version >3.0.0</version >
32+ </dependency >
33+ <dependency >
34+ <groupId >com.h2database</groupId >
35+ <artifactId >h2</artifactId >
36+ <version >1.4.197</version >
37+ </dependency >
38+ <dependency >
39+ <groupId >org.junit.jupiter</groupId >
40+ <artifactId >junit-jupiter</artifactId >
41+ <version >5.6.2</version >
42+ <scope >test</scope >
43+ </dependency >
44+ <dependency >
45+ <groupId >io.rest-assured</groupId >
46+ <artifactId >rest-assured</artifactId >
47+ <version >4.3.0</version >
48+ <scope >test</scope >
49+ </dependency >
50+
51+ <dependency >
52+ <groupId >org.evomaster</groupId >
53+ <artifactId >evomaster-client-java-controller</artifactId >
54+ <scope >test</scope >
55+ <version >1.0.1</version >
56+ </dependency >
57+
58+ </dependencies >
59+
60+
61+
62+
63+ <build >
64+ <plugins >
65+ <plugin >
66+ <groupId >org.apache.maven.plugins</groupId >
67+ <artifactId >maven-compiler-plugin</artifactId >
68+ <version >3.8.1</version >
69+ <inherited >true</inherited >
70+ <configuration >
71+ <release >1.8</release >
72+ </configuration >
73+ </plugin >
74+ </plugins >
75+ </build >
76+
77+ </project >
0 commit comments