我是struts框架的初学者。请帮忙,如何将maven工件和插件jar添加到maven存储库,因为我在maven存储库中丢失了jar文件。任何人帮我........
缺少图书馆:
答案 0 :(得分:0)
第一步:向pom.xml文件添加依赖项。例如:
<dependencies>
........
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts-core</artifactId>
<version>1.3.10</version>
</dependency>
<dependency>
<groupId>oro</groupId>
<artifactId>oro</artifactId>
<version>2.0.8</version>
</dependency>
........
</dependencies>
获得的所有声明
我不使用struts,但所有库都在maven cental repository中。
下一步,从项目根目录运行install命令(例如,在shell中)。所有依赖项可能会自动下载:
mvn install
如果依赖项下载失败,您可以手动将它们安装在本地存储库中(以前下载到磁盘),例如:
mvn install:install-file -Dfile=/path-to-file/oro-2.0.8.jar -DgroupId=oro -DartifactId=oro -Dversion=2.0.8 -Dpackaging=jar
安装指南http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html