我對intelij想法很陌生。我讀了其他主題,並聽從了建議,但他們沒有幫助。更新InteliJ Idea中的Maven依賴關係
我想添加一個依賴項(例如)jcl-over-slf4:jar但它沒有被添加,這裏是日誌中的錯誤。
017-12-02 14: 40: 41,903 [6473161] INFO - # org.jetbrains.idea.maven - org.apache.maven.project.ProjectBuildingException: some problems occurred while processing POM:
[ERROR] 'dependencies.dependency.groupId' for: jcl-over-slf4: jar is missing. @line 31, column 16
我關閉理念及.IntelliJIdea14 \ SYSTEM \ Maven的\指數刪除一切,清除重啓理念,全家的.m2 \ repository目錄
,並在設置中,我嘗試連接到中央Maven倉庫,但第一次加載緩慢。現在它根本不加載 enter image description here
我打開了自動導入並關閉了防火牆和防病毒軟件。允許訪問互聯網。設置虛擬機選項-Xmx1024m
但問題依然存在。 enter image description here 但.m2/repository文件夾的大小僅爲27兆字節(並且您需要270)。
版本14.1.6的想法。
這裏是我的pom.xml
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>spring</groupId>
<artifactId>spring-test-app</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>spring-test-app Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.3.11.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.3.11.RELEASE</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4</artifactId>
</dependency>
</dependencies>
<build>
<finalName>spring-test-app</finalName>
</build>
</project>
還有什麼應該怎麼做來加載所有的依賴?
似乎只是一個Maven的配置問題不是與理念的問題。很可能你的pom.xml的第31行沒有指定groupId(它應該是'org.slf4j')。請附上您的pom.xml。 – helospark
我編輯了主題消息並附上了pom。但在intelej錯誤標籤「jcl-over-slf4」 –
Sergu