0

私は Maven が初めてで、maven で qt-jambi を使用したいと考えています。このチュートリアルに従ったところ、Maven から次のエラーが返されました。

[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Building iycTest
[INFO]    task-segment: [test]
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] The plugin 'net.sf.qtjambi:qtjambi-maven-plugin' does not exist or no val
id version could be found
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1 second
[INFO] Finished at: Mon Nov 26 02:25:57 PST 2012
[INFO] Final Memory: 3M/15M
[INFO] ------------------------------------------------------------------------

私の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>mypacakage</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</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>

<repositories>
        <repository>
            <id>qtjambi</id>
            <name>qtjambi</name>
            <url>http://qtjambi.sourceforge.net/maven2/</url>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>qtjambi</id>
            <name>qtjambi</name>
            <url>http://qtjambi.sourceforge.net/maven2/</url>
        </pluginRepository>
    </pluginRepositories>

</project>

どうすれば解決できますか?私はMS Windows XPとMaven 2.0.11を使用しています

4

3 に答える 3

4

[古いリポジトリの場所にある README.txt を調べるための @Raymond ヒントに基づく更新]

リポジトリが移動したため、リポジトリの URL を変更する必要があります。からすべてのリポジトリ URL を変更します。

http://qtjambi.sourceforge.net/maven2/

http://repository.qt-jambi.org/nexus/content/repositories/releases-before-2011/

追加情報については、http: //qt-jambi.orgの新しいホームページも確認してください。この新しいリポジトリでは、maven プラグインで 4.6.3_04 を利用できます。4.5.2_01、4.6.2、および 4.6.3 は、qtjambi 自体で利用できます。

于 2012-11-26T16:49:14.607 に答える
2

READMEを参照すると、一番下にリポジトリへのリンクがあります。pom.xml を更新してから、maven を再実行します。

$ mvn --update-plugins clean install

$ mvn --version
 Apache Maven 3.0.4 (r1232337; 2012-01-17 00:44:56-0800)
 Maven home: /home/user/apache-maven-3.0.4
 Java version: 1.7.0_09, vendor: Oracle Corporation
 Java home: /home/user/jdk1.7.0_09/jre
 Default locale: en_CA, platform encoding: UTF-8
 OS name: "linux", version: "3.5.0-18-generic", arch: "amd64", family: "unix"
于 2012-11-26T17:12:49.137 に答える
2

自動的に解決されない可能性があるバージョンをプラグインに追加してみてください。

<version>4.6.3_04</version>

プラグインに使用できる利用可能なバージョンは、リポジトリの URL にあります。

http://old.qt-jambi.org/maven2/net/sf/qtjambi/qtjambi-maven-plugin/

おそらく、qtjambi のバージョンと同じプラグイン バージョンが必要になるので、この場合は適切なリポジトリを見つける必要があります。

于 2012-11-26T17:36:14.517 に答える