Hi,

I am having a problem trying to get the maven-jibx-plugin working in a 
multi-module project.

I originally had 2 single module projects both of which used the 
maven-jibx-plugin without any problem.
I have just reorganised these 2 projects into a single multi-module project and 
now when I try to run maven I get the error:

[INFO] Searching repository for plugin with prefix: 'jibx'.
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] The plugin 'org.apache.maven.plugins:maven-jibx-plugin' does not exist 
or no valid version could be found

In the parent pom file I have the plugin configured as:

<plugin>
            <groupId>org.jibx</groupId>
            <artifactId>maven-jibx-plugin</artifactId>
            <version>1.2.2</version>
            <configuration>
                        <directory>src/main/webapp/WEB-INF</directory>
                        <multi-module>true</multi-module>
                        <includes>
                                    <includes>*-binding.xml</includes>
                        </includes>
            </configuration>
            <executions>
                        <execution>
                                    <goals>
                                                <goal>bind</goal>
                                    </goals>
                        </execution>
            </executions>
</plugin>

And I have these dependencies:

<dependency>
                <groupId>org.jibx</groupId>
                <artifactId>jibx-run</artifactId>
                <version>1.2.2</version>
</dependency>
<dependency>
                <groupId>org.jibx</groupId>
                <artifactId>jibx-extras</artifactId>
                <version>1.2.2</version>
</dependency>

Any ideas why it doesn't work in multi-module mode?

Thanks,
Joolz

Julian Fawcett
Esprit Information Ltd

------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
jibx-users mailing list
jibx-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jibx-users

Reply via email to