You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2016/08/27 15:03:59 UTC

svn commit: r1758049 - in /myfaces/core/branches/2.3.x: api/pom.xml impl/pom.xml parent/pom.xml

Author: lu4242
Date: Sat Aug 27 15:03:58 2016
New Revision: 1758049

URL: http://svn.apache.org/viewvc?rev=1758049&view=rev
Log:
add websocket dependency

Modified:
    myfaces/core/branches/2.3.x/api/pom.xml
    myfaces/core/branches/2.3.x/impl/pom.xml
    myfaces/core/branches/2.3.x/parent/pom.xml

Modified: myfaces/core/branches/2.3.x/api/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.3.x/api/pom.xml?rev=1758049&r1=1758048&r2=1758049&view=diff
==============================================================================
--- myfaces/core/branches/2.3.x/api/pom.xml (original)
+++ myfaces/core/branches/2.3.x/api/pom.xml Sat Aug 27 15:03:58 2016
@@ -652,6 +652,11 @@
             <groupId>org.apache.geronimo.specs</groupId>
             <artifactId>geronimo-atinject_1.0_spec</artifactId>
         </dependency>
+		
+		<dependency>
+			<groupId>org.apache.tomcat</groupId>
+			<artifactId>tomcat-websocket-api</artifactId>
+		</dependency>
         
         <!-- TEST DEPENDENCIES -->
         

Modified: myfaces/core/branches/2.3.x/impl/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.3.x/impl/pom.xml?rev=1758049&r1=1758048&r2=1758049&view=diff
==============================================================================
--- myfaces/core/branches/2.3.x/impl/pom.xml (original)
+++ myfaces/core/branches/2.3.x/impl/pom.xml Sat Aug 27 15:03:58 2016
@@ -1200,6 +1200,12 @@
             <groupId>org.apache.myfaces.buildtools</groupId>
             <artifactId>myfaces-builder-annotations</artifactId>
         </dependency>
+		
+		<!-- Websockets -->
+		<dependency>
+			<groupId>org.apache.tomcat</groupId>
+			<artifactId>tomcat-websocket-api</artifactId>
+		</dependency>
 
         <!-- commons dependencies -->
         <dependency>

Modified: myfaces/core/branches/2.3.x/parent/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.3.x/parent/pom.xml?rev=1758049&r1=1758048&r2=1758049&view=diff
==============================================================================
--- myfaces/core/branches/2.3.x/parent/pom.xml (original)
+++ myfaces/core/branches/2.3.x/parent/pom.xml Sat Aug 27 15:03:58 2016
@@ -465,7 +465,17 @@
                 <version>1.0</version>
                 <scope>compile</scope>
                 <optional>true</optional>
-            </dependency>            
+            </dependency>
+
+			<!-- JSR356 Websockets -->
+			<dependency>
+				<groupId>org.apache.tomcat</groupId>
+				<artifactId>tomcat-websocket-api</artifactId>
+				<version>7.0.53</version>
+                <scope>compile</scope>
+                <optional>true</optional>
+			</dependency>
+            
             <!-- UTILITY DEPENDENCIES -->
 
             <!-- builder-annotations like @JSFWebConfigParam -->