Skip to content

Latest commit

 

History

History
executable file
·
64 lines (58 loc) · 3.29 KB

README.md

File metadata and controls

executable file
·
64 lines (58 loc) · 3.29 KB

JAXB / XJC Plugin to add Lombok annotations in classes generated from an XML Schema. Annotations supported:

Usage on the Command Line

XJC Plugin options:

Usage with Maven

Minimal configuration is just to enable this plugin:

            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jaxb2-maven-plugin</artifactId>
                <version>2.2</version>
                <dependencies>
                    <dependency>
                        <groupId>it.yobibit</groupId>
                        <artifactId>jaxb-lombok-plugin</artifactId>
                        <version>1.0.0</version>
                    </dependency>
                </dependencies>
                <executions>
                    <execution>
                        <id>xjc</id>
                        <goals>
                            <goal>xjc</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <packageName>com.company.model</packageName>
                    <arguments>
                        <argument>-Xlombok</argument> <!-- That is always required annotation -->
                    </arguments>
                </configuration>
            </plugin>

Inspired by: