maven -- 使用本地仓库中的jar

来源:互联网 发布:linux setlocale 编辑:程序博客网 时间:2024/06/05 10:43

在pom.xml文件中添加如下代码:

<dependencies>    ......    <dependency>        <groupId>xxx</groupId>        <artifactId>xxx</artifactId>        <version>xxx</version>        <type>jar</type>    </dependency>    ......</dependencies>




0 0