You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2020/12/11 07:54:23 UTC

[myfaces-tobago] 08/22: check if tools.jar is needed with JDK 1.8 (and higher)

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

weber pushed a commit to branch TOBAGO-1999_Select2
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 29e5345e083dcd9079b2696d325a2c3a2e952cf1
Author: Udo Schnurpfeil <ud...@irian.eu>
AuthorDate: Wed Aug 26 20:54:08 2020 +0200

    check if tools.jar is needed with JDK 1.8 (and higher)
---
 tobago-tool/tobago-tool-apt/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/tobago-tool/tobago-tool-apt/pom.xml b/tobago-tool/tobago-tool-apt/pom.xml
index 7bbc4ac..de39320 100644
--- a/tobago-tool/tobago-tool-apt/pom.xml
+++ b/tobago-tool/tobago-tool-apt/pom.xml
@@ -59,6 +59,12 @@
       <artifactId>ant</artifactId>
       <version>1.10.8</version>
       <scope>compile</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>com.sun</groupId>
+          <artifactId>tools</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>commons-io</groupId>