-
Bug
-
Resolution: Fixed
-
Normal
-
3.0.0
-
Security Level: Jimmy
-
None
current
the selenium driver is currently in compile scope.
http://mavensync.zkoss.org/eval/org/zkoss/chart/zkcharts/3.0.0-Eval/zkcharts-3.0.0-Eval.pom
<dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-remote-driver</artifactId> <version>2.53.1</version> </dependency>
expected
it should be in "test" scope
<dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-remote-driver</artifactId> <version>2.53.1</version> <scope>test</scope> </dependency>
workaround
<dependency> <groupId>org.zkoss.chart</groupId> <artifactId>zkcharts</artifactId> <version>${zkcharts.version}</version> <exclusions> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-remote-driver</artifactId> </exclusion> </exclusions> </dependency>