我想用qt-jambi创建UI,但我有一个问题。 我在eclipse中使用maven,并创建了一个maven项目,我从这里下载并在我的本地存储库中安装了第三方qt-jambi jar文件: http://old.qt-jambi.org/maven2/net/sf/qtjambi/ 以及文件:
(1)qtjambi-maven-plugin-linux32-4.5.2_01.jar
(2)qtjambi-platform-linux32-4.5.2_01.jar
我正在使用ubuntu 12.10(32位)和Maven 3.0.4。
我的maven资料库(m2 home)qt-jambi的路径如下:
/home/mehdi/.m2/repository/net/sf/qtjambi/qtjambi/4.5.2_01/qtjambi-4.5.2_01.jar
/home/mehdi/.m2/repository/net/sf/qtjambi/qtjambi-maven-plugin-linux32/4.5.2_01/qtjambi-maven-plugin-linux32-4.5.2_01.jar
所以我将这些行添加到我的pom.xml:http://old.qt-jambi.org/users/maven-repository/
我的pom.xml文件是:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.iyasin</groupId>
<artifactId>iycTest</artifactId>
<version>2.0</version>
<packaging>jar</packaging>
<name>iycTest</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>net.sf.qtjambi</groupId>
<artifactId>qtjambi</artifactId>
<version>4.5.2_01</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>net.sf.qtjambi</groupId>
<artifactId>qtjambi-maven-plugin-linux32</artifactId>
<executions>
<execution>
<id>qtjambi</id>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<sourcesDir>src/main/java</sourcesDir>
<noObsoleteTranslations>true</noObsoleteTranslations>
</configuration>
</plugin>
</plugins>
</build>
</project>
当运行mvn test
或mvn compile
时,我将返回错误:
Failed to parse plugin descriptor for net.sf.qtjambi:qtjambi-maven-plugin-linux32:4.5.2_01 (/home/mehdi/.m2/repository/net/sf/qtjambi/qtjambi-maven-plugin-linux32/4.5.2_01/qtjambi-maven-plugin-linux32-4.5.2_01.jar): No plugin descriptor found at META-INF/maven/plugin.xml -> [Help 1]
答案 0 :(得分:0)
您需要添加到POM的相关部分:
<pluginRepositories>
<pluginRepository>
<id>qtjambi-releases-before-2011</id>
<name>QtJambi (Releases Before 2011)</name>
<url>http://repository.qt-jambi.org/nexus/content/repositories/releases-before-2011</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
以上内容可以放入您的settings.xml或项目POM中。
您应该真正运行本地存储库代理(例如Nexus或Artifactory)。然后设置settings.xml以指向该本地存储库。然后将其配置为缓存中央和qtjambi以及您使用的其他存储库。然而,这样做的好处太长了,无法进入这里,最好用谷歌研究这个话题。