Skip to content

arktekk/sbt-cxf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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