WIP
[demos/pact] / consumer / pom.xml
index d9d8d14..3e70c9f 100644 (file)
@@ -15,6 +15,7 @@
        <description>Demo of a Pact Provider</description>
        <properties>
                <java.version>11</java.version>
+               <pact.version>4.1.0</pact.version>
        </properties>
        <dependencies>
                <dependency>
                        <artifactId>spring-boot-starter-test</artifactId>
                        <scope>test</scope>
                </dependency>
+               <dependency>
+                       <groupId>org.junit.jupiter</groupId>
+                       <artifactId>junit-jupiter-api</artifactId>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>au.com.dius.pact.consumer</groupId>
+                       <artifactId>junit5</artifactId>
+                       <version>${pact.version}</version>
+                       <scope>test</scope>
+               </dependency>
        </dependencies>
 
        <build>
@@ -48,6 +60,9 @@
                                        </excludes>
                                </configuration>
                        </plugin>
+                       <plugin>
+                               <artifactId>maven-failsafe-plugin</artifactId>
+                       </plugin>
                </plugins>
        </build>