标签:dmi 工程 aging 完成 pack group nis module jar
假设我们要将G:\ModuleAPI_Java_2.2.0.0 .jar导入工程中:
首先,在mvn命令行执行下面命令:
mvn install:install-file -Dfile=G:\ModuleAPI_Java_2.2.0.0 .jar -DgroupId=moduleAPI -DartifactId=module-API -Dversion=1.0 -Dpackaging=jar
(系统会自动在你的C:\Users\Administrator\.m2\repository\文件下面创建moduleAPI目录)
然后在porm.xml中添加如下配置:
<dependency>
<groupId>moduleAPI</groupId>
<artifactId>module-API</artifactId>
<version>1.0</version>
</dependency>
完成后,重新启动项目即可。
标签:dmi 工程 aging 完成 pack group nis module jar
原文地址:http://www.cnblogs.com/MIXP/p/7345441.html