an sbt plugin to automaticaly launch mock services defined within a soapui project
Add plugin to project/plugins.sbt:
resolvers += "Sonatype Repository" at "https://oss.sonatype.org/content/groups/public"
addSbtPlugin("com.ebiznext.sbt.plugins" % "sbt-soapui-mockservice" % "0.1.1")
For .sbt build definitions, inject the plugin settings in build.sbt:
seq(soapui.settings :_*)
For .scala build definitions, inject the plugin settings in Build.scala:
Project(..., settings = Project.defaultSettings ++ com.ebiznext.sbt.plugins.SoapUIMockServicePlugin.soapui.settings)
Plugin keys are located in com.ebiznext.sbt.plugins.SoapUIMockServicePlugin.Keys
soapui.mockServices := Seq(
soapui.MockService( (resourceDirectory in Test).value / "soapui-project.xml", "9001"),
...
)