umefjord

Results 5 issues of umefjord

_Re-posting the same problem as mentioned in https://github.com/mojohaus/jaxb2-maven-plugin/issues/52, with a new description and motivation:_ We specify explicit xmlns namespace prefixes in our package-info.java files, in order to get well-defined namespace-prefixes...

bug

Our fix for https://github.com/mojohaus/jaxb2-maven-plugin/issues/141

Adding a new possible way of configuring schemaSourceExcludeFilters, example of usage: ``` ... ^.*MyExcludedClass.*$ ... ``` or exclude everything _but_ files matching "MyExcludedClass"... ``` ... ^((?!MyExcludedClass).)*$ ... ```

When running schemagen for a project with enum types the generated XSD contains no namespace prefix in the elements with references to these types. As no default namespace is declared...

bug

Same problem as in https://github.com/mojohaus/jaxb2-maven-plugin/issues/25, but occurs when assigning a constant to the name-attribute of XmlType annotation. Example: ``` /** * The documentation that I need in my XSD.... */...