我有一个maven 3存储库。我需要在POM中添加一些外部jar作为依赖项。我在他的存储库中手动创建了jar的文件夹结构,并粘贴了从Internet下载的jar。 POM中仍然存在错误,指出依赖的jar文件不存在。请建议。
答案 0 :(得分:2)
手动创建文件夹结构将不起作用。如果您想在maven中使用某些jar作为依赖项,则应将它们安装在本地存储库中:
您必须使用的命令是:
@Path("/myresource")
public MyResource {
private SecurityContextHolderStrategy securityContextHolderStrategy;
@Get
public String getUserName() {
return securityContextHolderStrategy.getContext().getAuthentication().getName();
}
}
例如:
mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>
更多信息:https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html