Thursday, October 27, 2011

maven uses the latest version in repository

I used to work on selenium, the version updating is quite quick and a lot of bugs are fixed.

To keep using the latest version from repository, setup maven like this

 

<dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>[2.8.0,)</version>
        </dependency>

Here is the reference online

No comments:

Post a Comment