You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by de...@apache.org on 2016/07/01 07:42:52 UTC

svn commit: r1750884 - /myfaces/tobago/trunk/tobago-example/tobago-example-demo/pom.xml

Author: deki
Date: Fri Jul  1 07:42:52 2016
New Revision: 1750884

URL: http://svn.apache.org/viewvc?rev=1750884&view=rev
Log:
TOBAGO-1473: added docker-maven-plugin to avoid version conflicts between selenium and local firefox installation - it's not yet used by default

Modified:
    myfaces/tobago/trunk/tobago-example/tobago-example-demo/pom.xml

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-demo/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-demo/pom.xml?rev=1750884&r1=1750883&r2=1750884&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-demo/pom.xml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-demo/pom.xml Fri Jul  1 07:42:52 2016
@@ -115,6 +115,23 @@
           </includes>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>io.fabric8</groupId>
+        <artifactId>docker-maven-plugin</artifactId>
+        <version>0.15.9</version>
+        <configuration>
+          <images>
+            <image>
+              <name>selenium/standalone-firefox:2.53.0</name>
+              <run>
+                <ports>
+                  <port>4444:4444</port>
+                </ports>
+              </run>
+            </image>
+          </images>
+        </configuration>
+      </plugin>
     </plugins>
   </build>