From 12857519282a6a441e129481704a2f8afa5ca67d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Descotte?= Date: Fri, 3 Jan 2020 13:56:10 +0100 Subject: [PATCH] Fix error in dependency groupId --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 +```