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

            <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>
                        <argument>-Xlombok:Setter</argument>
                        <argument>-Xlombok:removeGeneratedSourceSetters</argument>
                        <argument>-Xlombok:ToString</argument>
                        <argument>-Xlombok:Builder</argument>
                    </arguments>
                </configuration>
            </plugin>

Inspired by: