Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 539 Bytes

README.textile

File metadata and controls

16 lines (10 loc) · 539 Bytes

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.

Minimal Setup

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))