Return-Path: X-Original-To: apmail-incubator-cloudstack-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-cloudstack-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8F9B89E91 for ; Thu, 9 Aug 2012 12:46:39 +0000 (UTC) Received: (qmail 3274 invoked by uid 500); 9 Aug 2012 12:46:39 -0000 Delivered-To: apmail-incubator-cloudstack-dev-archive@incubator.apache.org Received: (qmail 3183 invoked by uid 500); 9 Aug 2012 12:46:38 -0000 Mailing-List: contact cloudstack-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cloudstack-dev@incubator.apache.org Delivered-To: mailing list cloudstack-dev@incubator.apache.org Received: (qmail 3163 invoked by uid 99); 9 Aug 2012 12:46:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Aug 2012 12:46:38 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [209.85.160.47] (HELO mail-pb0-f47.google.com) (209.85.160.47) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Aug 2012 12:46:31 +0000 Received: by pbcwy7 with SMTP id wy7so768566pbc.6 for ; Thu, 09 Aug 2012 05:46:09 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type :x-gm-message-state; bh=6l5+dGtEorp39i+GAEX8oRM0t3s2tk1GpYpHh3MGgjs=; b=flMWUxiMZ7H1HxJbFbz1AoMBxFzgxa5Xg2znHcw+8UcD3nwnfylVQqdxB9FJ35utHe wHbrV8Q+9YU9tYPgROglRx2it9Xfq1Phj0h5hGj9PB4/T/fvGA0kdq4PQ1ZasaMMcL0i vw6L6JrRcxjJliGQb9U/QiqeWhYhpyR53lJVjPG/MNCvqOar/Kr0lihKAe7qoGS/VlLO bdFJn8uFJt8V79FHCMUnG7h8Nuwu2+8r+kMk0Doz1QYDgyUuf4A4tmJ31eCo4r5iaT2y orgUraD5HIC6BRk5PlOLzG2cG8ZAfNWPU/gkmm4T328pZyb3Nrfuh82MGeo0c1ENOfdq ITPw== Received: by 10.68.191.234 with SMTP id hb10mr4073479pbc.2.1344516369110; Thu, 09 Aug 2012 05:46:09 -0700 (PDT) MIME-Version: 1.0 Received: by 10.142.201.21 with HTTP; Thu, 9 Aug 2012 05:45:48 -0700 (PDT) From: David Nalley Date: Thu, 9 Aug 2012 08:45:48 -0400 Message-ID: Subject: selenium To: cloudstack-dev@incubator.apache.org Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQkQhmvqWLo4nxg03psXSrOHpMKKNsaWmMMSFXUZGu0H6y2wPXLyUGA7OnnMqXUzJUf9oF7n Hi folks, I originally thought that Selenium was just added as a convenience for future testing plans (tools/tooljars/cloud-selenium-java-client-driver.jar) but it seems it is actually a dependency for the compile-testclient target. Then I thought it shouldn't be a problem to move this and add this as a downloadable dependency. So I start looking for selenium-client-driver.jar - and I find that's a very old version (1.0.x timeframe, about 4 years old) but undeterred, I keep looking and find the referenced jar, and make that part of my resolveBuildDeps target. So it gets downloaded and my build still fails, except it's complaining about not being able to find package org.openqa.selenium.server......which also strikes me as odd. So I check the size of the newly download version, 54k, and I check the original and that is 16M - so clearly they are not the same thing. The code that requires this hasn't been touched since before the 3.0.x UI came out, so I question if it is even usable anymore. Second, where did this jar actually come from? It looks like all of selenium in a single jar. UPDATE: This appears to be selenium-server-1.0.3-standalone.jar. Interesting obfuscation scheme at work. --David