score:0

for this it has a very solution. just add scalaxbignoreunknown in (compile, scalaxb) := true in your build tool sample code for build.sbt

```lazy val hellomodule = (project in file(".")).settings(
commonsettings,
publishsetting,
scalaxbignoreunknown in (compile, scalaxb) := true,
scalaxbdispatchversion in (compile, scalaxb) := vdispatch,
scalaxbpackagename in (compile, scalaxb)     := "com.hello.hellomodule.client",
librarydependencies := seq(
      "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.4",
      "org.scala-lang.modules" %% "scala-swing" % "2.0.0-m2",


      "net.databinder.dispatch" %% "dispatch-core" % vdispatch,
      "com.typesafe" % "config" % "1.3.1",
  "org.scala-lang.modules" %% "scala-xml" % "1.1.0"
    ),
name := "com.hello.hellomodule.client").enableplugins(scalaxbplugin)```

Related Query

More Query from same tag