2013-07-29 36 views
1

我在IntelliJ中爲我創建的Maven插件收到了不正確的錯誤消息。Maven Plugin Annotations的IntelliJ錯誤消息

我在我的POM以下依賴性:

<dependencies> 
    <dependency> 
     <groupId>org.apache.maven</groupId> 
     <artifactId>maven-plugin-api</artifactId> 
     <version>2.0</version> 
    </dependency> 
    <dependency> 
     <groupId>org.apache.maven.plugin-tools</groupId> 
     <artifactId>maven-plugin-annotations</artifactId> 
     <version>3.2</version> 
     <scope>provided</scope> 
    </dependency> 
</dependencies> 

我使用的IntelliJ 12.0

不正確的錯誤是在屏幕。有誰知道什麼會導致這種情況?

代碼運行就好了clean install

maven incorrect errors

+1

範圍是「提供的」,這意味着圖書館來自容器。 IntelliJ是否正確指向你的容器? – rocketboy

+0

是的,並且依賴關係在左側菜單中正確顯示在「外部庫」下 – Vegard

+1

您可以嘗試從IntelliJ「Maven Projects」的右側選項卡點擊並單擊第2個按鈕:「重新導入所有Maven項目」和「爲所有項目生成源文件和更新文件夾「? – sfat

回答

2

嘗試刪除本地~/.m2/repo。也許重新安裝Intellij而不重新導入你的舊設置並重新開始。