jibx-maven-plugin version 1.2.3 has now been released as a replacement for
the maven-jibx-plugin plugin.

Besides the name change to conform to the maven plugin naming convention,
there are several changes.

The main goal of this project was to simplify the plugin's usage while
maintaining compatibility with the old plugin.

You should be able to replace the plugin name in your projects without
changing any configuration. You will notice that many of the parameter names
have been deprecated and replaced with more descriptive names. The main
reason for this change was that the code-gen and the bind functions were
using the same parameter names for different functions.

The new documentation is available at http://jibx.org/jibx-maven-plugin.

For example, for a web-based schema the new plugin configuration can be
simplified to:

            <plugin>
                <groupId>org.jibx</groupId>
                <artifactId>maven-jibx-plugin</artifactId>
                <version>1.2.3</version>

                <executions>
                    <execution>
                        <goals>
                            <goal>schema-codegen</goal>
                        </goals>
                    </execution>
                    <execution>
                        <goals>
                            <goal>bind</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>

<schemaLocation>http://www.jibx.org/sampleschema/</schemaLocation>
                    <includeSchemas>
                        <includeSchema>person.xsd</includeSchema>
                    </includeSchemas>
                </configuration>
            </plugin>

Give it a try!
------------------------------------------------------------------------------
What You Don't Know About Data Connectivity CAN Hurt You
This paper provides an overview of data connectivity, details
its effect on application quality, and explores various alternative
solutions. http://p.sf.net/sfu/progress-d2d
_______________________________________________
jibx-users mailing list
jibx-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jibx-users

Reply via email to