Hi Dennis, long time no speak.  I was the original author of the plugin
collaborating with Andreas back in 2005.

Here is my setup:

project common:    some bindings
project dbmodel:    some bindings
project service:      some bindings
project web:          no bindings, jibx plugin

Here is the plugin in the web pom:

<plugin>

  <groupId>org.jibx</groupId>

  <artifactId>maven-jibx-plugin</artifactId>

  <version>${jibx.version}</version>

  <executions>

    <execution>

      <phase>process-classes</phase>

      <goals>

        <goal>bind</goal>

      </goals>

    </execution>

  </executions>

  <configuration>

    <multimodule>true</multimodule>

    <directory>src/main/config</directory>

    <includes>

      <include>*.jibx.xml</include>

    </includes>

  </configuration>

</plugin>

This works perfectly with version 1.2.2, but version 1.2.3 says:

Not running JiBX binding compiler (multi-module mode) - no binding files


I have tried every combination of changing to restricted mode:


    <bindingModules>

      <classPath>com.noledgy.appryse:common</classPath>

      <classPath>com.noledgy.appryse:dbmodel</classPath>

      <classPath>com.noledgy.appryse:service</classPath>

    </bindingModules>

and the new syntax:

 <modules>
    <module>com.example:example1</module>
    <module>com.example:example2</module>
 </modules>

but nothing works.  What's wrong?

Frank Mena
------------------------------------------------------------------------------
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d
_______________________________________________
jibx-users mailing list
jibx-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jibx-users

Reply via email to