martiell / scalaxb

scalaxb is an XML data binding tool for Scala.

Home Page:http://scalaxb.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

scalaxb

scalaxb is an XML data-binding tool for Scala that supports W3C XML Schema (xsd) and Web Services Description Language (wsdl) as the input file.

From schema documents scalaxb will generate Scala source files containing case classes to represent the data and typeclass instances to turn XML documents into an object, and the object back to XML.

Status

The latest is 1.1.0. Some things may not work. I'd really appreciate if you could run it against your favorite xsd file and let me know the result.

Modules

There are currently four ways of running scalaxb:

  • command line app scalaxb
  • sbt plugin sbt-scalaxb
  • maven plugin mvn-scalaxb
  • web API scalaxb-heroku hosted on heroku

sbt-scalaxb for sbt 0.12.x

To call scalaxb from sbt 0.12.x, put this in your project/plugins.sbt:

resolvers ++= Seq(
  "sonatype-public" at "https://oss.sonatype.org/content/groups/public")

addSbtPlugin("org.scalaxb" % "sbt-scalaxb" % "X.X")

and this in build.sbt:

scalaxbSettings

packageName in scalaxb in Compile := "xxx"

sourceGenerators in Compile <+= scalaxb in Compile

command line app scalaxb

See INSTALL.md.

mvn-scalaxb

See mvn-scalaxb.

Documents

Further info is available at scalaxb.org.

Bug Reporting

If you're having problem with scalaxb, please take a moment and read issue reporting guideline.

Licensing

It's the MIT License. See the file called LICENSE.

Contacts

About

scalaxb is an XML data binding tool for Scala.

http://scalaxb.org/

License:MIT License


Languages

Language:Scala 94.3%Language:Java 5.5%Language:Shell 0.2%