I'm just getting started with QT Jambi and I have some problems getting the Maven-plugin to work. I get the following error message:
[ERROR] Failed to execute goal net.sf.qtjambi:qtjambi-maven-plugin:4.6.3.1:generate (default-cli) on project DegooClientGUI: Execution default-cli of goal net.sf.qtjambi:qtjambi-maven-plugin:4.6.3.1:generate failed: Plugin net.sf.qtjambi:qtjambi-maven-plugin:4.6.3.1 or one of its dependencies could not be resolved: Failed to collect dependencies for net.sf.qtjambi:qtjambi-maven-plugin:jar:4.6.3.1 (): Failed to read artifact descriptor for net.sf.qtjambi:qtjambi-maven-plugin-win32:jar:4.6.3.1: Could not transfer artifact net.sf.qtjambi:qtjambi-maven-plugin-win32:pom:4.6.3.1 from/to qtjambi (http://qtjambi.sourceforge.net/maven2/): Checksum validation failed, no checksums available from the repository -> [Help 1]
My pom looks like this:
<repositories>
<repository>
<id>qtjambi</id>
<name>qtjambi</name>
<url>http://qtjambi.sourceforge.net/maven2/</url>
<releases>
<checksumPolicy>ignore</checksumPolicy>
</releases>
<snapshots>
<checksumPolicy>ignore</checksumPolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>qtjambi</id>
<name>qtjambi</name>
<url>http://qtjambi.sourceforge.net/maven2/</url>
<releases>
<checksumPolicy>ignore</checksumPolicy>
</releases>
<snapshots>
<checksumPolicy>ignore</checksumPolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>net.sf.qtjambi</groupId>
<artifactId>qtjambi</artifactId>
<version>4.6.3</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>tests</testSourceDirectory>
<plugins>
<plugin>
<groupId>net.sf.qtjambi</groupId>
<artifactId>qtjambi-maven-plugin</artifactId>
<version>4.6.3.1</version>
<executions>
<execution>
<id>qtjambi</id>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- Specifies where sources are. This parameter is MANDATORY -->
<sourcesDir>src</sourcesDir>
<!-- following parameters aren't mandatory, they use defaults as specified here
if not specified
<translationsDir>src/main/resources/translations</translationsDir>
<destinationDir>target/generated-sources/qtjambi</destinationDir>
-->
<!-- cause -noobsolete switch for lupdate -->
<noObsoleteTranslations>true</noObsoleteTranslations>
</configuration>
</plugin>
</plugins>
</build>
As you can see I've tried to ignore checksum-errors but that doesn't help. I've also tried specifying other versions, that are available in the repository. That didn't help either. Any ideas? Thanks in advance!