fix: Upgraded Lombok, to support modules
[demos/spring-boot] / pom.xml
diff --git a/pom.xml b/pom.xml
index 0ad8f78..bc748b5 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -15,6 +15,8 @@
 
        <properties>
                <java.version>1.8</java.version>
+               <lombok.version>1.18.22</lombok.version>
+               <testcontainers.version>1.12.4</testcontainers.version>
        </properties>
 
        <dependencies>
                        <artifactId>reactor-test</artifactId>
                        <scope>test</scope>
                </dependency>
+               <dependency>
+                       <groupId>org.seleniumhq.selenium</groupId>
+                       <artifactId>selenium-remote-driver</artifactId>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.testcontainers</groupId>
+                       <artifactId>selenium</artifactId>
+                       <version>${testcontainers.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>