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 2017/09/01 10:22:06 UTC

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

Author: deki
Date: Fri Sep  1 10:22:06 2017
New Revision: 1806924

URL: http://svn.apache.org/viewvc?rev=1806924&view=rev
Log:
updated some versions, added WildFly Swarm profile

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=1806924&r1=1806923&r2=1806924&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-demo/pom.xml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-demo/pom.xml Fri Sep  1 10:22:06 2017
@@ -32,12 +32,12 @@
   -->
 
   <properties>
-    <openwebbeans.version>1.7.2</openwebbeans.version>
-    <deltaspike.version>1.7.2</deltaspike.version>
+    <openwebbeans.version>2.0.0</openwebbeans.version>
+    <deltaspike.version>1.8.0</deltaspike.version>
     <!--<arquillian.browser>firefox</arquillian.browser>-->
     <!-- phantomjs works not with CSP (report-only) -->
     <arquillian.browser>phantomjs</arquillian.browser>
-    <selenium.version>3.3.1</selenium.version>
+    <selenium.version>3.5.1</selenium.version>
     <tomee.version>7.0.3</tomee.version>
   </properties>
   <build>
@@ -143,7 +143,7 @@
       <plugin>
         <groupId>io.fabric8</groupId>
         <artifactId>docker-maven-plugin</artifactId>
-        <version>0.15.9</version>
+        <version>0.22.1</version>
         <configuration>
           <images>
             <image>
@@ -179,14 +179,14 @@
       <dependency>
         <groupId>org.jboss.arquillian.extension</groupId>
         <artifactId>arquillian-drone-bom</artifactId>
-        <version>2.1.0.Alpha3</version>
+        <version>2.4.1</version>
         <scope>import</scope>
         <type>pom</type>
       </dependency>
       <dependency>
         <groupId>org.jboss.arquillian.graphene</groupId>
         <artifactId>graphene-webdriver</artifactId>
-        <version>2.2.0</version>
+        <version>2.3.1</version>
         <type>pom</type>
         <scope>test</scope>
         <exclusions>
@@ -199,7 +199,7 @@
       <dependency>
         <groupId>com.google.guava</groupId>
         <artifactId>guava</artifactId>
-        <version>21.0</version>
+        <version>23.0</version>
       </dependency>
     </dependencies>
   </dependencyManagement>
@@ -788,7 +788,7 @@
         <dependency>
           <groupId>org.jboss.arquillian.container</groupId>
           <artifactId>arquillian-tomcat-embedded-8</artifactId>
-          <version>1.0.0.CR7</version>
+          <version>1.0.0</version>
           <scope>test</scope>
         </dependency>
       </dependencies>
@@ -911,7 +911,7 @@
           <plugin>
             <groupId>io.fabric8</groupId>
             <artifactId>docker-maven-plugin</artifactId>
-            <version>0.15.9</version>
+            <version>0.22.1</version>
             <configuration>
               <images>
                 <image>
@@ -937,6 +937,26 @@
           </plugin>
         </plugins>
       </build>
+    </profile>
+
+    <profile><!-- combine with jsf provided and remove OWB listener from web.xml -->
+      <id>wildfly</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.wildfly.swarm</groupId>
+            <artifactId>wildfly-swarm-plugin</artifactId>
+            <version>2017.8.1</version>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>package</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
     </profile>
   </profiles>
 </project>