I found the problem in linux 32.

In the pom.xml and the pom.in in the maven/qtjambi and /maven/plugin dir. you 
have:

<profile>
            <id>linux-32</id>
            <activation>
                <os>
                    <name>Linux</name>
                    <arch>x86</arch>
                </os>
            </activation>

A the correct is

<profile>
            <id>linux-32</id>
            <activation>
                <os>
                    <name>Linux</name>
                    <arch>i386</arch>
                </os>
            </activation>

After this changes, the plugin works as expected.


_______________________________________________
Qt-jambi-interest mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-jambi-interest

Reply via email to