fix: Upgraded Lombok, to support modules
[demos/spring-boot] / pom.xml
diff --git a/pom.xml b/pom.xml
index 861ba15..bc748b5 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -9,12 +9,14 @@
                <relativePath/> <!-- lookup parent from repository -->
        </parent>
        <groupId>de.juplo.demos</groupId>
-       <artifactId>TEMPLATE</artifactId>
+       <artifactId>checkbox</artifactId>
        <version>0.0.1-SNAPSHOT</version>
-       <name>Demo: TEMPLATE</name>
+       <name>Demo: Behavior Of A Checkbox</name>
 
        <properties>
                <java.version>1.8</java.version>
+               <lombok.version>1.18.22</lombok.version>
+               <testcontainers.version>1.12.4</testcontainers.version>
        </properties>
 
        <dependencies>
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-starter-webflux</artifactId>
                </dependency>
+               <dependency>
+                       <groupId>org.projectlombok</groupId>
+                       <artifactId>lombok</artifactId>
+                       <scope>provided</scope>
+               </dependency>
 
                <dependency>
                        <groupId>org.springframework.boot</groupId>
                        <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>