Added an integration-test for HtmlController
[demos/testing] / pom.xml
diff --git a/pom.xml b/pom.xml
index 8da5bd0..4c97fe5 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -16,6 +16,7 @@
 
        <properties>
                <java.version>1.8</java.version>
+               <jsoup.version>1.12.1</jsoup.version>
        </properties>
 
        <dependencies>
                        <artifactId>reactor-test</artifactId>
                        <scope>test</scope>
                </dependency>
+               <dependency>
+                       <groupId>org.jsoup</groupId>
+                       <artifactId>jsoup</artifactId>
+                       <version>${jsoup.version}</version>
+                       <scope>test</scope>
+               </dependency>
 
                <dependency>
                        <groupId>org.springframework.boot</groupId>
                                <groupId>org.springframework.boot</groupId>
                                <artifactId>spring-boot-maven-plugin</artifactId>
                        </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-failsafe-plugin</artifactId>
+                       </plugin>
                </plugins>
        </build>