0

我想用 qt-jambi 创建 UI,但我有一个问题。我在 Eclipse 中使用 maven,并创建了一个 maven 项目,我从这里下载并安装了第 3 方 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(32bit) 和 Maven 3.0.4。

我的 qt-jambi 的 maven 存储库(m2 home)路径如下:

/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 testmvn 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]
4

1 回答 1

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 以及您使用的其他存储库。不过这个好处太长了,这里就不赘述了,最好用google研究一下这个话题。

于 2013-02-26T17:50:26.257 回答