Author: piergiorgio
Date: Mon Nov 27 13:24:56 2023
New Revision: 1914159
URL: http://svn.apache.org/viewvc?rev=1914159&view=rev
Log:
fixed Maven build for the HDFS connector excluding jdk.tools:1.6
(CONNECTORS-1751)
Modified:
manifoldcf/trunk/connectors/hdfs/pom.xml
Modified: manifoldcf/trunk/connectors/hdfs/pom.xml
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/hdfs/pom.xml?rev=1914159&r1=1914158&r2=1914159&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/hdfs/pom.xml (original)
+++ manifoldcf/trunk/connectors/hdfs/pom.xml Mon Nov 27 13:24:56 2023
@@ -368,5 +368,17 @@
</exclusion>
</exclusions>
</dependency>
+
+ <dependency>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-annotations</artifactId>
+ <version>${hadoop.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>jdk.tools</groupId>
+ <artifactId>jdk.tools</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
</dependencies>
</project>