This is a follow-on question from How to un/marshall underscored XML to/from camelcased Java using JAXB?
I'm trying to use Moxy (part of EclipseLink) from Scala (sbt 0.10.0), and am struggling to figure out how to import and use it. To break this into two parts:
1. Importing Moxy
For once I can't find anything appropriate on mvnrepository.com. From reading this page on Maven setup, I was hoping the following would work:
// /project/Dependencies.scala
object Dependencies {
val resolutionRepos = Seq(
ScalaToolsSnapshots,
"EclipseLink Repo" at "http://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/rt/eclipselink/maven.repo"
)
object V {
val moxy = "2.1.0"
}
object Runtime {
// We use Moxy for the naming convention transforms
val moxy = "org.eclipse.persistence" % "javax.eclipselink" % V.moxy
}
But sbt is complaining module not found: org.eclipse.persistence#javax.eclipselink;2.1.0
2. Specifying Moxy as my JAXB provider
With the above fixed (thanks S.R.I.!) the next problem is that I'm having trouble specifying Moxy as my JAXB provider. From the instructions in this article by Blaise Doughan, it looks like I need to put a jaxb.properties file with the following entry in the same package as my representations:
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
But unfortunately this doesn't seem to be picked up when running through sbt. Any ideas?
Any help gratefully received. And Merry Christmas everybody!
eclipselinkthanjavax.eclipselink? – S.R.I Dec 25 '11 at 12:57