diff --git a/.gitpod.yml b/.gitpod.yml
index 74f08b244ae3e5cdd0cfc7447017b01318f2bd7a..52f6d1fa36eef119f67344bc963c8f2d9b6f46c7 100644
--- a/.gitpod.yml
+++ b/.gitpod.yml
@@ -13,3 +13,4 @@ vscode:
   extensions:
     - jebbs.plantuml@2.13.12:q7DiD6H5NTesaWYIXmeMMQ==
     - vsls-contrib.codetour@0.0.37:n/LcXr1DIqz+xFGficwDHA==
+    - ritwickdey.liveserver
diff --git a/todolist/fxui/pom.xml b/todolist/fxui/pom.xml
index 70983bfbb8d0c7dba5c86d855b345b376c1304ba..08757f61a60ef323bf37143418c5ae075889f93d 100644
--- a/todolist/fxui/pom.xml
+++ b/todolist/fxui/pom.xml
@@ -180,7 +180,7 @@
                 <configuration>
                     <skipTests>${skipUiTests}</skipTests>
                     <argLine>
-                    --add-opens todolist.ui/todolist.ui=ALL-UNNAMED --add-exports javafx.graphics/com.sun.javafx.application=ALL-UNNAMED
+                    @{jaCoCoArgLine} --add-opens todolist.ui/todolist.ui=ALL-UNNAMED --add-exports javafx.graphics/com.sun.javafx.application=ALL-UNNAMED
                     </argLine>
                 </configuration>
             </plugin>
@@ -209,6 +209,9 @@
             <plugin>
                 <groupId>org.jacoco</groupId>
                 <artifactId>jacoco-maven-plugin</artifactId>
+                <configuration>
+                    <propertyName>jaCoCoArgLine</propertyName>
+                </configuration>
             </plugin>
         </plugins>
     </build>
diff --git a/todolist/rest/pom.xml b/todolist/rest/pom.xml
index de5ab94e1aa9a63f430ceb310f41dd974273c612..61873d813a31c6a95c1f06863558ed53ea7a313a 100644
--- a/todolist/rest/pom.xml
+++ b/todolist/rest/pom.xml
@@ -152,7 +152,7 @@
                 <artifactId>maven-surefire-plugin</artifactId>
                 <configuration>
                     <argLine>
-                    --add-opens todolist.rest/todolist.restapi=ALL-UNNAMED
+                    @{jaCoCoArgLine} --add-opens todolist.rest/todolist.restapi=ALL-UNNAMED
                     </argLine>
                 </configuration>
             </plugin>
@@ -172,7 +172,10 @@
             <plugin>
                 <groupId>org.jacoco</groupId>
                 <artifactId>jacoco-maven-plugin</artifactId>
-            </plugin>
+                <configuration>
+                    <propertyName>jaCoCoArgLine</propertyName>
+                </configuration>
+           </plugin>
         </plugins>
     </build>
 </project>