Skip to content

JAXB / XJC Plugin to add Lombok annotations in classes generated from an XML Schema

Notifications You must be signed in to change notification settings

uded/jaxb-lombok-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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:

About

JAXB / XJC Plugin to add Lombok annotations in classes generated from an XML Schema

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Java 100.0%