You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by jm...@apache.org on 2016/12/02 23:39:26 UTC

[2/5] incubator-guacamole-client git commit: GUACAMOLE-133: Exclude StAX dependency, which is part of Java 6.

GUACAMOLE-133: Exclude StAX dependency, which is part of Java 6.


Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/621af69f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/621af69f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/621af69f

Branch: refs/heads/master
Commit: 621af69f87b8bc66f86321b48054177d2996f91b
Parents: 119fae2
Author: Michael Jumper <mj...@apache.org>
Authored: Fri Dec 2 14:24:32 2016 -0800
Committer: Michael Jumper <mj...@apache.org>
Committed: Fri Dec 2 14:25:41 2016 -0800

----------------------------------------------------------------------
 guacamole/pom.xml | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/621af69f/guacamole/pom.xml
----------------------------------------------------------------------
diff --git a/guacamole/pom.xml b/guacamole/pom.xml
index 544bf7e..2af9a75 100644
--- a/guacamole/pom.xml
+++ b/guacamole/pom.xml
@@ -480,6 +480,15 @@
             <groupId>com.sun.jersey</groupId>
             <artifactId>jersey-json</artifactId>
             <version>1.17.1</version>
+
+            <!-- Exclude StAX API, which is part of Java 6 -->
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.xml.stream</groupId>
+                    <artifactId>stax-api</artifactId>
+                </exclusion>
+            </exclusions>
+
         </dependency>
 
     </dependencies>