在 spring 工具套件中找不到丢失的 com.css maven 工件

Cannot find missing com.css maven artifacts in spring tools suite

我正在尝试在 Spring Tools Suite 3.7 版和 Maven 3.3.3 版中编译 Maven 项目。

它失败了

Could not resolve dependencies for project
com.ccs:ccs-nbook-service:jar:0.0.1-SNAPSHOT: The following artifacts could not be resolved:
com.ccs:ccs-common-service:jar:R.1.0.BUILD-SNAPSHOT,
com.ccs:ccs-common-ui:jar:R.1.0.BUILD-SNAPSHOT,
com.ccs:ccs-common-core:jar:R.1.0.BUILD-SNAPSHOT: Could not find artifact 
com.ccs:ccs-common-service:jar:R.1.0.BUILD-SNAPSHOT in central

我在网上看过,但找不到这些 Maven 存储库。

有谁知道我可以从哪里获得这些存储库或者我该如何解决这个问题?

我在下面找不到上面列出的这些jar文件link

http://mvnrepository.com/

我猜这些jar可能是别人开发的,但还不是很稳定,所以jar的版本名以snapshot

结尾

如果您可以获得或找到这些 jar 文件,您可以将这些 jar 安装到您的本地 maven 存储库或将它们上传到您的中央存储库

安装jar文件到本地repo命令如下

mvn install:install-file  -Dfile=D:/jar/xxx.jar  -DgroupId=xxx.xxx  -DartifactId=xxx -Dversion=x.x -Dpackaging=jar