You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an existing Java project that uses JAXB 2.x that I am trying to move to JAXB 3.0 and as such, have modified the project to use the org.jvnet.jaxb:jaxb-maven-plugin:3.0.2 plugin's generate goal.
The schemas are located in subdirectories under src/main/resources. For example:
If I place all of my schema in src/main/resources directly and remove the schemaDirectory and schemaIncludes, the plugin finds the schemas and is able to compile them.
The text was updated successfully, but these errors were encountered:
I have an existing Java project that uses JAXB 2.x that I am trying to move to JAXB 3.0 and as such, have modified the project to use the org.jvnet.jaxb:jaxb-maven-plugin:3.0.2 plugin's generate goal.
The schemas are located in subdirectories under src/main/resources. For example:
I have tried all sorts of values for
schemaDirectory
andschemaIncludes
and nothing seems to work since I get this message from running the build:My plugin declaration is pretty simple so I do not understand why this isn't working:
If I place all of my schema in
src/main/resources
directly and remove theschemaDirectory
andschemaIncludes
, the plugin finds the schemas and is able to compile them.The text was updated successfully, but these errors were encountered: