I have got "sealing violation: package org.mortbay.util is sealed"
exception while running selenium test with following maven2
dependencies

<dependency>
        <groupId>com.google.gwt</groupId>
        <artifactId>gwt-dev</artifactId>
        <version>1.6.4</version>
        <classifier>linux</classifier>
        <scope>provided</scope>
</dependency>

<dependency>
        <groupId>org.openqa.selenium.client-drivers</groupId>
        <artifactId>selenium-java-client-driver</artifactId>
        <version>1.0-SNAPSHOT</version>
        <scope>test</scope>
</dependency>

<dependency>
        <groupId>org.openqa.selenium.server</groupId>
        <artifactId>selenium-server</artifactId>
        <version>1.0-SNAPSHOT</version>
        <scope>test</scope>
</dependency>

I am not able even to start selenium server

RemoteControlConfiguration configuration = new
RemoteControlConfiguration();
configuration.setPort(4444);
SeleniumServer seleniumServer = new SeleniumServer(configuration);
seleniumServer.start();

Selenium test run if I remove gwt-dev dependency!

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to