Skip to content

Commit 9ab1bc3

Browse files
authored
Update README with dependencies info
1 parent 7b518f0 commit 9ab1bc3

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# selenium-shutterbug
22

33
[![Build Status](https://travis-ci.org/assertthat/selenium-shutterbug.svg?branch=master)](https://travis-ci.org/assertthat/selenium-shutterbug)
4-
[![Dependency Status](https://www.versioneye.com/user/projects/581e02854304530ab1e52873/badge.svg?style=flat-square)](https://www.versioneye.com/user/projects/581e02854304530ab1e52873)
54

65
## Synopsis
76

@@ -43,12 +42,26 @@ The project is available in [Maven Central](http://search.maven.org/#search%7Cga
4342
<groupId>com.assertthat</groupId>
4443
<artifactId>selenium-shutterbug</artifactId>
4544
<version>x.x</version>
45+
<exclusions>
46+
<exclusion>
47+
<groupId>org.seleniumhq.selenium</groupId>
48+
<artifactId>selenium-java</artifactId>
49+
</exclusion>
50+
</exclusions>
4651
</dependency>
4752
```
4853
##### Using Gradle
4954

5055
```
51-
compile 'com.assertthat:selenium-shutterbug:x.x'
56+
compile ('com.assertthat:selenium-shutterbug:x.x') {
57+
exclude group: "org.seleniumhq.selenium", name: "selenium-java"
58+
}
59+
```
60+
61+
##### Using SBT
62+
63+
```
64+
"com.assertthat" % "selenium-shutterbug" % "x.x" exclude("org.seleniumhq.selenium", "selenium-java"),
5265
```
5366
## Contributing
5467

0 commit comments

Comments
 (0)