You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by re...@apache.org on 2020/09/17 20:31:08 UTC

[uima-uimaj] 01/01: [UIMA-6267] UIMA SDK Eclipse Plugins fail to build after Eclipse 2020-09 release

This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch UIMA-6267-UIMA-SDK-Eclipse-Plugins-fail-to-build-after-Eclipse-2020-09-release
in repository https://gitbox.apache.org/repos/asf/uima-uimaj.git

commit b0fdac4a9721e7185a7a79d4fe10d41e4971a339
Author: Richard Eckart de Castilho <re...@apache.org>
AuthorDate: Thu Sep 17 22:31:12 2020 +0200

    [UIMA-6267] UIMA SDK Eclipse Plugins fail to build after Eclipse 2020-09 release
    
    - Add exclusions for the artifacts that are missing
---
 uimaj-ep-debug/pom.xml    | 10 +++++++++-
 uimaj-ep-launcher/pom.xml | 10 +++++++++-
 2 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/uimaj-ep-debug/pom.xml b/uimaj-ep-debug/pom.xml
index 6bcd17a..752f426 100644
--- a/uimaj-ep-debug/pom.xml
+++ b/uimaj-ep-debug/pom.xml
@@ -107,9 +107,17 @@ UIMA data structures to the Eclipse Debug displays</description>
 			<version>[3.8.0, 4.0.0)</version>
 			<scope>provided</scope>
 			
-			<!-- https://issues.apache.org/jira/browse/UIMA-5252 -->
       <exclusions>
         <exclusion>
+          <groupId>com.sun.jna</groupId>
+          <artifactId>com.sun.jna</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>com.sun.jna</groupId>
+          <artifactId>com.sun.jna.platform</artifactId>
+        </exclusion>
+        <!-- https://issues.apache.org/jira/browse/UIMA-5252 -->
+        <exclusion>
           <groupId>org.eclipse.platform</groupId>
           <artifactId>org.eclipse.swt</artifactId>
         </exclusion>
diff --git a/uimaj-ep-launcher/pom.xml b/uimaj-ep-launcher/pom.xml
index 66add75..40237e2 100644
--- a/uimaj-ep-launcher/pom.xml
+++ b/uimaj-ep-launcher/pom.xml
@@ -104,9 +104,17 @@
 			<artifactId>org.eclipse.jdt.debug.ui</artifactId>
       <version>[3.8.0, 4.0.0)</version>
 			<scope>provided</scope>
-			<!-- https://issues.apache.org/jira/browse/UIMA-5252 -->
       <exclusions>
         <exclusion>
+          <groupId>com.sun.jna</groupId>
+          <artifactId>com.sun.jna</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>com.sun.jna</groupId>
+          <artifactId>com.sun.jna.platform</artifactId>
+        </exclusion>
+        <!-- https://issues.apache.org/jira/browse/UIMA-5252 -->
+        <exclusion>
           <groupId>org.eclipse.platform</groupId>
           <artifactId>org.eclipse.swt</artifactId>
         </exclusion>