Skip to content

Commit aa5cf8e

Browse files
loicdescottestringbean
authored andcommitted
Fix error in dependency groupId (#7)
1 parent 9791b45 commit aa5cf8e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Add the following to your `build.sbt`:
1515

1616
```scala
17-
libraryDependencies += "purpledragon.software.xml" %% "xml-compare" % "<version>"
17+
libraryDependencies += "software.purpledragon.xml" %% "xml-compare" % "<version>"
1818
```
1919

2020
You can then compare XML using:
@@ -32,7 +32,7 @@ val result = XmlCompare.compare(doc1, doc2)
3232
A companion library is provided for testing XML in Scalatest:
3333

3434
```scala
35-
libraryDependencies += "purpledragon.software.xml" %% "xml-scalatest" % "<version>" % Test
35+
libraryDependencies += "software.purpledragon.xml" %% "xml-scalatest" % "<version>" % Test
3636
```
3737

3838
This then enables the `beXml` matcher:
@@ -47,5 +47,5 @@ doc should beXml(<person><name>John Smith</name></person>)
4747
Similarly a companion library for specs2 is provided:
4848

4949
```scala
50-
libraryDependencies += "purpledragon.software.xml" %% "xml-specs2" % "<version>" % Test
51-
```
50+
libraryDependencies += "software.purpledragon.xml" %% "xml-specs2" % "<version>" % Test
51+
```

0 commit comments

Comments
 (0)