我現在爲我混帳回購協議文件我已經創建,它是具有的pom.xml瓶當除了罐子在混帳回購協議導入來自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>
我想要導入的額外的jar來自mvn repo的圖框具有如下依賴關係:
https://mvnrepository.com/artifact/graphframes/graphframes/0.5.0-spark2.1-s_2.11
我必須在pom文件中做出什麼改變?
它不是在中央存儲庫中搜索,並從混帳repo.Hence搜索給你在哪裏提到的git倉庫錯誤 –
是放棄? – Punit
正如我在文章中已經提到的那樣:1)在你的settings.xml文件中提供git repo(我希望它已經提供了,這就是爲什麼你能夠下載這些依賴關係)。 2)在您的pom中提供圖框依賴關係,並在存儲庫標記內提供您的mvn repo位置。 – Punit