diff --git a/deps/vmware-apputils.jar b/deps/vmware-apputils.jar
deleted file mode 100644
index f93d46eba06..00000000000
Binary files a/deps/vmware-apputils.jar and /dev/null differ
diff --git a/deps/vmware-credstore.jar b/deps/vmware-credstore.jar
deleted file mode 100644
index b661fd878b6..00000000000
Binary files a/deps/vmware-credstore.jar and /dev/null differ
diff --git a/deps/vmware-lib-activation.jar b/deps/vmware-lib-activation.jar
deleted file mode 100644
index 8cbef16f485..00000000000
Binary files a/deps/vmware-lib-activation.jar and /dev/null differ
diff --git a/deps/vmware-lib-axis.jar b/deps/vmware-lib-axis.jar
deleted file mode 100644
index 20b09a595b4..00000000000
Binary files a/deps/vmware-lib-axis.jar and /dev/null differ
diff --git a/deps/vmware-lib-jaxen-core.jar b/deps/vmware-lib-jaxen-core.jar
deleted file mode 100644
index e52bf679cc0..00000000000
Binary files a/deps/vmware-lib-jaxen-core.jar and /dev/null differ
diff --git a/deps/vmware-lib-jaxen-jdom.jar b/deps/vmware-lib-jaxen-jdom.jar
deleted file mode 100644
index 978bd026919..00000000000
Binary files a/deps/vmware-lib-jaxen-jdom.jar and /dev/null differ
diff --git a/deps/vmware-lib-jaxen.license b/deps/vmware-lib-jaxen.license
deleted file mode 100644
index 2a3429689cf..00000000000
--- a/deps/vmware-lib-jaxen.license
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Redistribution and use of this software and associated documentation
- * ("Software"), with or without modification, are permitted provided
- * that the following conditions are met:
- *
- * 1. Redistributions of source code must retain copyright
- * statements and notices. Redistributions must also contain a
- * copy of this document.
- *
- * 2. Redistributions in binary form must reproduce the
- * above copyright notice, this list of conditions and the
- * following disclaimer in the documentation and/or other
- * materials provided with the distribution.
- *
- * 3. The name "Jaxen" must not be used to endorse or promote
- * products derived from this Software without prior written
- * permission of werken digital. For written permission,
- * please contact bob@werken.com.
- *
- * 4. Products derived from this Software may not be called "Jaxen"
- * nor may "Jaxen" appear in their names without prior written
- * permission of werken digital. Jaxen is a registered
- * trademark of werken digital
- *
- * 5. Due credit should be given to the Jaxen Project
- * (http://jaxen.org/).
- *
- * THIS SOFTWARE IS PROVIDED BY METASTUFF, LTD. AND CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
- * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
- * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
- * METASTUFF, LTD. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
- * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
- * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
- * OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * Copyright 2001 (C) werken digital. All Rights Reserved.
- */
diff --git a/deps/vmware-lib-jaxen.readme b/deps/vmware-lib-jaxen.readme
deleted file mode 100644
index 8deca37ca69..00000000000
--- a/deps/vmware-lib-jaxen.readme
+++ /dev/null
@@ -1,93 +0,0 @@
-The Jaxen libraries included here are based on Jaxen 1.0-FCS. Jaxen 1.0-FCS
-was written against JDOM Beta 9, and for Jaxen to support JDOM Beta 10+, we
-had to make the following change to org.jaxen.jdom.DocumentNavigator. The
-jaxen-jdom.jar provided here includes this change, and it's the only
-difference between the JARs here and the Jaxen 1.0-FCS JARs.
-
-
---- DocumentNavigator.java.orig Tue Aug 31 16:23:32 2004
-+++ DocumentNavigator.java Fri Sep 03 00:08:37 2004
-@@ -72,6 +72,8 @@
-
- import org.jdom.Document;
- import org.jdom.Element;
-+import org.jdom.Parent;
-+import org.jdom.Content;
- import org.jdom.Comment;
- import org.jdom.Text;
- import org.jdom.Attribute;
-@@ -231,7 +233,7 @@
- nsMap.put( ns.getPrefix(), new XPathNamespace(elem, ns) );
- }
-
-- current = current.getParent();
-+ current = current.getParentElement();
- }
-
- nsMap.put( "xml", new XPathNamespace(elem, Namespace.XML_NAMESPACE) );
-@@ -247,17 +249,9 @@
- {
- parent = contextNode;
- }
-- else if ( contextNode instanceof Element )
-+ else if ( contextNode instanceof Content )
- {
-- parent = ((Element)contextNode).getParent();
--
-- if ( parent == null )
-- {
-- if ( ((Element)contextNode).isRootElement() )
-- {
-- parent = ((Element)contextNode).getDocument();
-- }
-- }
-+ parent = ((Content)contextNode).getParent();
- }
- else if ( contextNode instanceof Attribute )
- {
-@@ -267,18 +261,6 @@
- {
- parent = ((XPathNamespace)contextNode).getJDOMElement();
- }
-- else if ( contextNode instanceof ProcessingInstruction )
-- {
-- parent = ((ProcessingInstruction)contextNode).getParent();
-- }
-- else if ( contextNode instanceof Comment )
-- {
-- parent = ((Comment)contextNode).getParent();
-- }
-- else if ( contextNode instanceof Text )
-- {
-- parent = ((Text)contextNode).getParent();
-- }
-
- if ( parent != null )
- {
-@@ -456,9 +438,9 @@
- {
- element = (Element) context;
- }
-- else if ( context instanceof Text )
-+ else if ( context instanceof Content )
- {
-- element = ((Text)context).getParent();
-+ element = ((Content)context).getParentElement();
- }
- else if ( context instanceof Attribute )
- {
-@@ -467,14 +449,6 @@
- else if ( context instanceof XPathNamespace )
- {
- element = ((XPathNamespace)context).getJDOMElement();
-- }
-- else if ( context instanceof Comment )
-- {
-- element = ((Comment)context).getParent();
-- }
-- else if ( context instanceof ProcessingInstruction )
-- {
-- element = ((ProcessingInstruction)context).getParent();
- }
-
- if ( element != null )
diff --git a/deps/vmware-lib-jaxrpc.jar b/deps/vmware-lib-jaxrpc.jar
deleted file mode 100644
index a2c13d9a212..00000000000
Binary files a/deps/vmware-lib-jaxrpc.jar and /dev/null differ
diff --git a/deps/vmware-lib-jdom.jar b/deps/vmware-lib-jdom.jar
deleted file mode 100644
index 288e64cb5c4..00000000000
Binary files a/deps/vmware-lib-jdom.jar and /dev/null differ
diff --git a/deps/vmware-lib-mailapi.jar b/deps/vmware-lib-mailapi.jar
deleted file mode 100644
index 2f8620b6d4a..00000000000
Binary files a/deps/vmware-lib-mailapi.jar and /dev/null differ
diff --git a/deps/vmware-lib-saxpath.jar b/deps/vmware-lib-saxpath.jar
deleted file mode 100644
index 2b43955babc..00000000000
Binary files a/deps/vmware-lib-saxpath.jar and /dev/null differ
diff --git a/deps/vmware-lib-smtp.jar b/deps/vmware-lib-smtp.jar
deleted file mode 100644
index 145d302d28a..00000000000
Binary files a/deps/vmware-lib-smtp.jar and /dev/null differ
diff --git a/deps/vmware-lib-wbem.jar b/deps/vmware-lib-wbem.jar
deleted file mode 100644
index a4b806df469..00000000000
Binary files a/deps/vmware-lib-wbem.jar and /dev/null differ
diff --git a/deps/vmware-lib-xalan.jar b/deps/vmware-lib-xalan.jar
deleted file mode 100644
index b8f25753260..00000000000
Binary files a/deps/vmware-lib-xalan.jar and /dev/null differ
diff --git a/deps/vmware-lib-xalan.license b/deps/vmware-lib-xalan.license
deleted file mode 100644
index 0ac417ec103..00000000000
--- a/deps/vmware-lib-xalan.license
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * The Apache Software License, Version 1.1
- *
- * Copyright (c) 1999 The Apache Software Foundation. All rights
- * reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in
- * the documentation and/or other materials provided with the
- * distribution.
- *
- * 3. The end-user documentation included with the redistribution,
- * if any, must include the following acknowledgment:
- * "This product includes software developed by the
- * Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowledgment may appear in the software itself,
- * if and wherever such third-party acknowledgments normally appear.
- *
- * 4. The names "Xalan" and "Apache Software Foundation" must
- * not be used to endorse or promote products derived from this
- * software without prior written permission. For written
- * permission, please contact apache@apache.org.
- *
- * 5. Products derived from this software may not be called "Apache",
- * nor may "Apache" appear in their name, without prior written
- * permission of the Apache Software Foundation.
- *
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
- * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
- * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
- * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- * ====================================================================
- *
- * This software consists of voluntary contributions made by many
- * individuals on behalf of the Apache Software Foundation and was
- * originally based on software copyright (c) 1999, Lotus
- * Development Corporation., http://www.lotus.com. For more
- * information on the Apache Software Foundation, please see
- * .
- */
diff --git a/deps/vmware-lib-xalan.readme b/deps/vmware-lib-xalan.readme
deleted file mode 100644
index 50b903d1122..00000000000
--- a/deps/vmware-lib-xalan.readme
+++ /dev/null
@@ -1,2 +0,0 @@
-This is Xalan 2.5.D1, distributed from http://xml.apache.org.
-It's designed to go with Xerces 2.4.0.
diff --git a/deps/vmware-lib-xerces.jar b/deps/vmware-lib-xerces.jar
deleted file mode 100644
index e9fe08ad452..00000000000
Binary files a/deps/vmware-lib-xerces.jar and /dev/null differ
diff --git a/deps/vmware-lib-xerces.readme b/deps/vmware-lib-xerces.readme
deleted file mode 100644
index b6ae08d442f..00000000000
--- a/deps/vmware-lib-xerces.readme
+++ /dev/null
@@ -1,63 +0,0 @@
-Xerces 2.6.0
-
-This product includes Xerces software developed by the Apache Software
-Foundation (http://www.apache.org/). It is redistributed in accordance with
-the license below. For more information, see http://xml.apache.org.
-
-/*
- * The Apache Software License, Version 1.1
- *
- *
- * Copyright (c) 1999 The Apache Software Foundation. All rights
- * reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in
- * the documentation and/or other materials provided with the
- * distribution.
- *
- * 3. The end-user documentation included with the redistribution,
- * if any, must include the following acknowledgment:
- * "This product includes software developed by the
- * Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowledgment may appear in the software itself,
- * if and wherever such third-party acknowledgments normally appear.
- *
- * 4. The names "Xerces" and "Apache Software Foundation" must
- * not be used to endorse or promote products derived from this
- * software without prior written permission. For written
- * permission, please contact apache@apache.org.
- *
- * 5. Products derived from this software may not be called "Apache",
- * nor may "Apache" appear in their name, without prior written
- * permission of the Apache Software Foundation.
- *
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
- * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
- * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
- * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- * ====================================================================
- *
- * This software consists of voluntary contributions made by many
- * individuals on behalf of the Apache Software Foundation and was
- * originally based on software copyright (c) 1999, International
- * Business Machines, Inc., http://www.ibm.com. For more
- * information on the Apache Software Foundation, please see
- * .
- */
-
diff --git a/deps/vmware-lib-xml-apis.jar b/deps/vmware-lib-xml-apis.jar
deleted file mode 100644
index 2dd83771445..00000000000
Binary files a/deps/vmware-lib-xml-apis.jar and /dev/null differ
diff --git a/deps/vmware-vim.jar b/deps/vmware-vim.jar
deleted file mode 100644
index c9831af675f..00000000000
Binary files a/deps/vmware-vim.jar and /dev/null differ
diff --git a/deps/vmware-vim25.jar b/deps/vmware-vim25.jar
deleted file mode 100644
index 01ba127da12..00000000000
Binary files a/deps/vmware-vim25.jar and /dev/null differ