/sbt-cxf-wsdl2java

an sbt plugin for generating java artifacts from WSDL using cxf

Primary LanguageScalaMIT LicenseMIT

Build Status Download

sbt-cxf-wsdl2java

An sbt plugin for generating java artifacts from WSDL using cxf.

For the moment, this fork only updates scala (to 2.10.6 because it's the version used to RUN sbt but your project can be 2.11 or 2.12), sbt (to 0.13.15) and CXF (to 3.1.12).

Requirements

Quick start

Add plugin to project/plugins.sbt:

resolvers ++= Seq(Resolver.bintrayIvyRepo("borisnaguet", "ivy"))
addSbtPlugin("io.github.borisnaguet" % "sbt-cxf-wsdl2java" % "0.2.0")

Configuration

Plugin keys are prefixed with "cxf".

  • wsdl2javaDefaultArgs: override the default arguments passed to wsdl2java, supply another Seq[String] of arguments.
  • cxfParallelExecution: set to false to disable running wsdl2java commands in parallel. Useful if there are duplicate classes to be generated and the output directory for multiple services are the same

Add Wsdls

lazy val wsclientPackage := "io.github.borisnaguet.sample"

cxfWsdls := Seq(
      CxfWsdl((resourceDirectory in Compile).value / "Sample.wsdl", Seq("-p",  wsclientPackage), "unique wsdl id"),
      ...
)

Commands

~wsdl2java To automatically generate source code when a wsdl is changed