Hi there.

I have published qtjambi maven repository. It is based on 4.5.2_01 release.

It is at http://dz-msk.users.sourceforge.net/maven2/

To use qtjambi in your maven project, just add into your pom.xml:

<repositories>
        <repository>
                <id>qtjambi</id>
                <name>qtjambi-sf-net</name>
                <url>http://dz-msk.users.sourceforge.net/maven2/</url>
        </repository>
</repositories>


<dependencies>
        <dependency>
            <groupId>net.sf.qtjambi</groupId>
            <artifactId>QtJambi</artifactId>
            <version>4.5.2_01</version>
        </dependency>
</dependencies>

 <build>
        <plugins>
             <!-- gtjambi plugin -->
            <plugin>
                <groupId>net.sf.qtjambi</groupId>
                <artifactId>QtJambiMavenPlugin</artifactId>
                <executions>
                    <execution>
                        <id>qtjambi</id>
                        <goals>
                            <goal>generate</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <sourcesDir>src/main/java</sourcesDir>
                    <qmDirectory>src/main/resources/translations</qmDirectory>
                    <noObsoleteTranslations>true</noObsoleteTranslations>
                </configuration>
            </plugin>
        </plugins>
</build>


Take a look at example project at 
http://dz-msk.users.sourceforge.net/maven2/net/sf/qtjambi/testapp/SimpleQtApplication/0.1/

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

Reply via email to