我試圖向我的eclipse項目添加maven依賴項。將maven依賴項添加到我的maven項目時找不到資源
信息庫持有的依賴是在這裏: http://repo.franga2000.com/artifactory/webapp/browserepo.html?12
而且我是按照作者的指令,將這些條目我的pom.xml(全POM是這裏http://pastebin.com/Bku9r9DV):
<repository>
<id>fanciful-mvn-repo</id>
<url>http://repo.franga2000.com/artifactory/public</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
<dependency>
<groupId>mkremins</groupId>
<artifactId>fanciful</artifactId>
<version>0.3.1</version>
</dependency>
但是,在我的編碼,當我嘗試:
import mkremins.fanciful.FancyMessage;
我得到:
The import mkremins cannot be resolved
我從來沒有運氣與maven依賴...現在我完全按照作者的指示,所以我真的不知道什麼是錯的。
檢查文件夾.m2下是否加載了jar? – Ashish
重新加載maven,它工作正常,當我嘗試 –
@Ashish - 是的。 – runelynx