This plugin for sbt will generate java-classes for web-service wsdls using Apache CXF. For a simple example of the usage see https://github.com/arktekk/sbt-cxf-example.
project/plugins.sbt
resolvers += “sonatype-snapshot-repo” at “https://oss.sonatype.org/content/repositories/snapshots”addSbtPlugin(“no.arktekk” % “sbt-cxf” % “0.3”)
build.sbt
seq(cxf.settings : _*)cxf.wsdls := Seq(cxf.Wsdl(file(path to wsdl-file), Nil, None))