diff --git a/README.md b/README.md index ec9787c..3e2a294 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Add the following to your `build.sbt`: ```scala -libraryDependencies += "purpledragon.software.xml" %% "xml-compare" % "" +libraryDependencies += "software.purpledragon.xml" %% "xml-compare" % "" ``` You can then compare XML using: @@ -32,7 +32,7 @@ val result = XmlCompare.compare(doc1, doc2) A companion library is provided for testing XML in Scalatest: ```scala -libraryDependencies += "purpledragon.software.xml" %% "xml-scalatest" % "" % Test +libraryDependencies += "software.purpledragon.xml" %% "xml-scalatest" % "" % Test ``` This then enables the `beXml` matcher: @@ -47,5 +47,5 @@ doc should beXml(John Smith) Similarly a companion library for specs2 is provided: ```scala -libraryDependencies += "purpledragon.software.xml" %% "xml-specs2" % "" % Test -``` \ No newline at end of file +libraryDependencies += "software.purpledragon.xml" %% "xml-specs2" % "" % Test +```