I am new to Selenium and currently trying to extract the server jar file (selenium-server-standalone-2.29.0.jar) on a Windows 7 PC and I am getting an error that I think is due to the fact that Windows is not case sensitive and the extraction is trying to create a directory META-INF\license when a directory META-INF\LICENSE already exists. Does anyone know how to get around this? Someone extracting on Windows had to have come across this...Thanks!
-Chris
$ jar -xvf selenium-server-standalone-2.29.0.jar
..
..
inflated: org/cyberneko/html/xercesbridge/XercesBridge_2_3.class
java.io.IOException: META-INF\license : could not create directory
at sun.tools.jar.Main.extractFile(Main.java:909)
at sun.tools.jar.Main.extract(Main.java:852)
at sun.tools.jar.Main.run(Main.java:242)
at sun.tools.jar.Main.main(Main.java:1149)
$ jar -xvf selenium-server-standalone-2.29.0.jar META-INF/LICENSE
inflated: META-INF/LICENSE.txt
inflated: META-INF/LICENSE
$ jar -xvf selenium-server-standalone-2.29.0.jar META-INF/license
java.io.IOException: META-INF\license : could not create directory
at sun.tools.jar.Main.extractFile(Main.java:909)
at sun.tools.jar.Main.extract(Main.java:887)
at sun.tools.jar.Main.run(Main.java:236)
at sun.tools.jar.Main.main(Main.java:1149)