我正在 Maven 制作项目。我将依赖项添加到 pom.xml ,它将依赖项下载到maven repostitory
但我收到了以下消息:
缺少工件org.springframework:spring-context:jar:5.0.0.M5
<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>
<groupId>pl.tutorial</groupId>
<artifactId>fiszki</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency> //here is showing mistake
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.0.0.M5</version>
</dependency>
</dependencies>
我检查过这个依赖项是在我的Maven资源库中下载的。
答案 0 :(得分:0)
您无法添加spring 5.0依赖项,而在pom.xml中,maven架构位置指向4.0.0。
尝试添加Spring 4.0依赖项。您可以使用的任何版本:
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.3.8.RELEASE</version>
</dependency>