私はMavenが初めてです。http://activeintelligence.org/blog/archive/hosting-maven-repository-for-third-party-jars-on-git-bitbucketgithub/に記載されている手順を使用して、サードパーティの jar 用の github maven リポジトリを作成しました。 . ここで jar (および対応する pom) を確認できます: https://github.com/sushilmittal/wiki-keyword-extraction/tree/master/repository/com/rapid_i/rapidminer/5.3.006
私の pom.xml には、上記の jar に対応する次の 2 つのエントリがあります。
<dependency>
<groupId>com.rapid_i</groupId>
<artifactId>rapidminer</artifactId>
<version>5.3.006</version>
</dependency>
と
<repositories>
<repository>
<id>wiki-keyword-extraction</id>
<url>https://github.com/sushilmittal/wiki-keyword-extraction/tree/master/repository/</url>
</repository>
</repositories>
mvn compile を実行すると、次の警告が表示されます。
ダウンロード: https://github.com/sushilmittal/wiki-keywordextraction/tree/master/repository/com/rapid_i/rapidminer/5.3.006/rapidminer-5.3.006.pom [警告] チェックサムの検証に失敗しました。https:/ /github.com/sushilmittal/wiki-keyword-extraction/tree/master/repository/com/rapid_i/rapidminer/5.3.006/rapidminer-5. 3.006.pom
さらに次のエラーが発生します。
[エラー] プロジェクト DataIndex で目標を実行できませんでした: プロジェクト DataIndex:DataIndex:jar:0.0.1-SNAPSHOT の依存関係を解決できませんでした: アーティファクト com.rapid_i:rapidminer:jar:5.3.006 が wiki-keyword-extraction で見つかりませんでした( https://github.com/sushilmittal/wiki-keyword-extraction/master/repository/ ) -> [ヘルプ 1]
https://github.com/sushilmittal/wiki-keywordextraction/tree/master/repository/com/rapid_i/rapidminer/5.3.006/の場所に手動で移動すると、ファイルが表示されます。そのため、maven がその場所から jar/pom をダウンロードできない理由がわかりません。
何か案は?