|
@@ -0,0 +1,69 @@
|
|
1
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
3
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
4
|
+ <modelVersion>4.0.0</modelVersion>
|
|
5
|
+
|
|
6
|
+ <groupId>fr.sayasoft</groupId>
|
|
7
|
+ <artifactId>fake-zinc</artifactId>
|
|
8
|
+ <version>0.1.0</version>
|
|
9
|
+
|
|
10
|
+ <parent>
|
|
11
|
+ <groupId>org.springframework.boot</groupId>
|
|
12
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
13
|
+ <version>1.5.4.RELEASE</version>
|
|
14
|
+ </parent>
|
|
15
|
+
|
|
16
|
+ <dependencies>
|
|
17
|
+ <dependency>
|
|
18
|
+ <groupId>org.springframework.boot</groupId>
|
|
19
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
20
|
+ <exclusions>
|
|
21
|
+ <exclusion>
|
|
22
|
+ <groupId>org.springframework.boot</groupId>
|
|
23
|
+ <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
24
|
+ </exclusion>
|
|
25
|
+ </exclusions>
|
|
26
|
+ </dependency>
|
|
27
|
+ <dependency>
|
|
28
|
+ <groupId>org.springframework.boot</groupId>
|
|
29
|
+ <artifactId>spring-boot-starter-undertow</artifactId>
|
|
30
|
+ </dependency>
|
|
31
|
+ <dependency>
|
|
32
|
+ <groupId>org.springframework.boot</groupId>
|
|
33
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
34
|
+ <scope>test</scope>
|
|
35
|
+ </dependency>
|
|
36
|
+ <dependency>
|
|
37
|
+ <groupId>com.jayway.jsonpath</groupId>
|
|
38
|
+ <artifactId>json-path</artifactId>
|
|
39
|
+ <scope>test</scope>
|
|
40
|
+ </dependency>
|
|
41
|
+ </dependencies>
|
|
42
|
+
|
|
43
|
+ <properties>
|
|
44
|
+ <java.version>1.8</java.version>
|
|
45
|
+ </properties>
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+ <build>
|
|
49
|
+ <plugins>
|
|
50
|
+ <plugin>
|
|
51
|
+ <groupId>org.springframework.boot</groupId>
|
|
52
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
53
|
+ </plugin>
|
|
54
|
+ </plugins>
|
|
55
|
+ </build>
|
|
56
|
+
|
|
57
|
+ <repositories>
|
|
58
|
+ <repository>
|
|
59
|
+ <id>spring-releases</id>
|
|
60
|
+ <url>https://repo.spring.io/libs-release</url>
|
|
61
|
+ </repository>
|
|
62
|
+ </repositories>
|
|
63
|
+ <pluginRepositories>
|
|
64
|
+ <pluginRepository>
|
|
65
|
+ <id>spring-releases</id>
|
|
66
|
+ <url>https://repo.spring.io/libs-release</url>
|
|
67
|
+ </pluginRepository>
|
|
68
|
+ </pluginRepositories>
|
|
69
|
+</project>
|