私は追加のjarファイルをインポートしたいGitのレポで瓶に加え、MVNレポから依存関係をインポート
<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>
<parent>
<groupId>com.acc.ar</groupId>
<artifactId>ar-anal-plat</artifactId>
<version>1.6.0-RC-SNAPSHOT</version>
</parent>
<artifactId>gr-anal-app</artifactId>
<dependencies>
<dependency>
<groupId>com.acc.ar</groupId>
<artifactId>ar-anal-core</artifactId>
</dependency>
<dependency>
<groupId>com.acc.ar</groupId>
<artifactId>ar-anal-core-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
として持つのpom.xmlがあり、私が作成したGitのレポで私のファイルのための、本の瓶を持っています
https://mvnrepository.com/artifact/graphframes/graphframes/0.5.0-spark2.1-s_2.11
を私がポンポンファイルで作成する必要がどのような変更:次のように依存関係を持つMVNレポからgraphframes?依存関係の中
それは中央リポジトリに検索し、ちょうどあなたがGitのレポを記載しているエラー –
を与えるのgit repo.Henceで検索から終了されていませんか? – Punit
すでに私の記事に言及していますが、1)settings.xmlファイルにgit repoを提供してください(既に提供されていれば、その依存関係をダウンロードできたのです)。 2)あなたのpomにgraphframes依存関係を提供し、リポジトリタグ内にもあなたのmvn repoの場所を提供します。 – Punit