e8566918afec377fb52474649efcd9f6ba645136
[demos/pact] / consumer / pom.xml
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5         <parent>
6                 <groupId>de.juplo.demos</groupId>
7                 <artifactId>pact</artifactId>
8                 <version>1.0.0</version>
9         </parent>
10         <groupId>de.juplo.demos</groupId>
11         <artifactId>consumer</artifactId>
12         <version>1.0.0</version>
13         <name>consumer</name>
14         <description>Demo of a Pact Consumer</description>
15         <dependencies>
16                 <dependency>
17                         <groupId>org.springframework.boot</groupId>
18                         <artifactId>spring-boot-starter-web</artifactId>
19                 </dependency>
20
21                 <dependency>
22                         <groupId>org.projectlombok</groupId>
23                         <artifactId>lombok</artifactId>
24                         <optional>true</optional>
25                 </dependency>
26                 <dependency>
27                         <groupId>org.springframework.boot</groupId>
28                         <artifactId>spring-boot-starter-test</artifactId>
29                         <scope>test</scope>
30                 </dependency>
31                 <dependency>
32                         <groupId>org.junit.jupiter</groupId>
33                         <artifactId>junit-jupiter-api</artifactId>
34                         <scope>test</scope>
35                 </dependency>
36                 <dependency>
37                         <groupId>au.com.dius.pact.consumer</groupId>
38                         <artifactId>junit5</artifactId>
39                         <version>${pact.version}</version>
40                         <scope>test</scope>
41                 </dependency>
42         </dependencies>
43
44         <build>
45                 <plugins>
46                         <plugin>
47                                 <groupId>org.springframework.boot</groupId>
48                                 <artifactId>spring-boot-maven-plugin</artifactId>
49                                 <configuration>
50                                         <excludes>
51                                                 <exclude>
52                                                         <groupId>org.projectlombok</groupId>
53                                                         <artifactId>lombok</artifactId>
54                                                 </exclude>
55                                         </excludes>
56                                 </configuration>
57                         </plugin>
58                         <plugin>
59                                 <artifactId>maven-failsafe-plugin</artifactId>
60                         </plugin>
61                 </plugins>
62         </build>
63
64 </project>