POM for ...缺失,Spring Boot Maven项目中没有可用的依赖信息

时间:2018-05-15 10:07:38

标签: java maven spring-boot pom.xml

我使用mvn install:install文件添加了本地jar,如下所示:

mvn install:install-file -Dfile='D:\WS\APP_Latest\app\lib\Services.jar' -DgroupId=Services -DartifactId=Services -Dversion=1.0 -Dpackaging=jar

然后在pom.xml中添加了依赖项,如下所示:

<dependency>
    <groupId>Services</groupId>
    <artifactId>Services</artifactId>
    <version>1.0</version>
    <scope>provided</scope>
</dependency>

然后尝试构建整个应用程序并收到如下警告消息:

[WARNING] The POM for ...:jar:1.0 is missing, no d
ependency information available

但是我能够在maven依赖项和路径“C:\ Users ... m2 .... pom”中看到添加的jar。

任何人都可以就此提出建议。

0 个答案:

没有答案