WIP:initial
[demos/pact] / consumer / pom.xml
index d9d8d14..e856691 100644 (file)
@@ -3,19 +3,15 @@
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
        <parent>
-               <groupId>org.springframework.boot</groupId>
-               <artifactId>spring-boot-starter-parent</artifactId>
-               <version>2.4.3</version>
-               <relativePath/> <!-- lookup parent from repository -->
+               <groupId>de.juplo.demos</groupId>
+               <artifactId>pact</artifactId>
+               <version>1.0.0</version>
        </parent>
        <groupId>de.juplo.demos</groupId>
        <artifactId>consumer</artifactId>
-       <version>0.0.1-SNAPSHOT</version>
+       <version>1.0.0</version>
        <name>consumer</name>
-       <description>Demo of a Pact Provider</description>
-       <properties>
-               <java.version>11</java.version>
-       </properties>
+       <description>Demo of a Pact Consumer</description>
        <dependencies>
                <dependency>
                        <groupId>org.springframework.boot</groupId>
                        <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 +55,9 @@
                                        </excludes>
                                </configuration>
                        </plugin>
+                       <plugin>
+                               <artifactId>maven-failsafe-plugin</artifactId>
+                       </plugin>
                </plugins>
        </build>