如上所述,我对 Maven 有疑问。在我当前的 eclipse 项目中,我使用 maven 进行依赖管理,直到现在它运行良好。
该项目不再工作,它指出:
Maven Dependencies references non existing library:
c:\.m2\repository\org\eclipse\lyo\oslc4j\core\oslc4j-core\1.1\oslc4j-core-1.1.jar'
如果我检查文件夹,则有与 jar 同名但以 jar.lastUpdated 结尾的文件。
我尝试了 maven clean 和 maven update,但没有成功。我的 pom.xml 中的行被标记为红色并声明:
Missing artifact org.eclipse.lyo.oslc4j.core:oslc4j-core:jar:1.1
这是我的 pom.xml 的内容:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http:/www.w3.org2001XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.or/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>rtc_oslc_common</groupId>
<artifactId>rtc_oslc_common</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
这个块是带有标记的块,它表明工件丢失。
<dependencies>
<dependency>
<groupId>org.eclipse.lyo.oslc4j.core</groupId>
<artifactId>oslc4j-core</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
</project>
我不知道为什么它不只是重新加载罐子而是停留在这种奇怪的状态。非常有帮助。