You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by sc...@apache.org on 2019/09/11 14:14:00 UTC

svn commit: r1866796 - in /manifoldcf/trunk: connectors/csws/pom.xml pom.xml

Author: schuch
Date: Wed Sep 11 14:14:00 2019
New Revision: 1866796

URL: http://svn.apache.org/viewvc?rev=1866796&view=rev
Log:
added missing cxf maven dependency for the csws connector

Modified:
    manifoldcf/trunk/connectors/csws/pom.xml
    manifoldcf/trunk/pom.xml

Modified: manifoldcf/trunk/connectors/csws/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/csws/pom.xml?rev=1866796&r1=1866795&r2=1866796&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/csws/pom.xml (original)
+++ manifoldcf/trunk/connectors/csws/pom.xml Wed Sep 11 14:14:00 2019
@@ -251,6 +251,11 @@
       <version>${project.version}</version>
     </dependency>
     <dependency>
+      <groupId>org.apache.cxf</groupId>
+      <artifactId>cxf-rt-transports-http</artifactId>
+      <version>${cxf.version}</version>
+    </dependency>
+    <dependency>
       <groupId>org.apache.httpcomponents</groupId>
       <artifactId>httpclient</artifactId>
       <version>${httpcomponent.httpclient.version}</version>

Modified: manifoldcf/trunk/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/pom.xml?rev=1866796&r1=1866795&r2=1866796&view=diff
==============================================================================
--- manifoldcf/trunk/pom.xml (original)
+++ manifoldcf/trunk/pom.xml Wed Sep 11 14:14:00 2019
@@ -95,6 +95,7 @@
     <gson.version>2.8.0</gson.version>
     <guava.version>21.0</guava.version>
     <jsoup.version>1.7.2</jsoup.version>
+    <cxf.version>3.3.1</cxf.version>
   </properties>
 
   <modules>
@@ -119,9 +120,9 @@
         </plugin>
       </plugins>
     </pluginManagement>
-    
+
     <plugins>
-    
+
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-source-plugin</artifactId>
@@ -148,7 +149,7 @@
           </archive>
         </configuration>
       </plugin>
-      
+
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
@@ -167,7 +168,7 @@
           </archive>
         </configuration>
       </plugin>
-      
+
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
@@ -180,7 +181,7 @@
           <maxmem>512m</maxmem>
         </configuration>
       </plugin>
-      
+
       <plugin>
         <artifactId>maven-resources-plugin</artifactId>
         <version>2.5</version>
@@ -188,12 +189,12 @@
           <encoding>UTF-8</encoding>
         </configuration>
       </plugin>
-      
+
       <plugin>
         <artifactId>maven-clean-plugin</artifactId>
         <version>2.4.1</version>
       </plugin>
-      
+
     </plugins>
   </build>
 
@@ -203,7 +204,7 @@
         <id>apache-mcf-release</id>
         <build>
             <plugins>
-                <!-- Create a source-release artifact that contains the fully buildable project directory source structure. 
+                <!-- Create a source-release artifact that contains the fully buildable project directory source structure.
                     This is the artifact which is the official subject of any release vote. -->
                 <plugin>
                     <artifactId>maven-assembly-plugin</artifactId>