maven如何引入本地依赖

今天遇到一个问题,要做一个语音识别接口的对接,想先跑一下对方给的demo,但是发现使用了maven却没有在pom里添加依赖,不知道他那边是怎么运行的。于是想到要在pom中添加本地依赖,结果真的可以:


System Dependencies

Dependencies with the scope system are always available and are not looked up in repository. They are usually used to tell Maven about dependencies which are provided by the JDK or the VM. Thus, system dependencies are especially useful for resolving dependencies on artifacts which are now provided by the JDK, but where available as separate downloads earlier. Typical example are the JDBC standard extensions or the Java Authentication and Authorization Service (JAAS).

A simple example would be:

<project>
...
<dependencies>
<dependency>
<groupId>javax.sql</groupId>
<artifactId>jdbc-stdext</artifactId>
<version>2.0</version>
<scope>system</scope>
<systemPath>${java.home}/lib/rt.jar</systemPath>
</dependency>
</dependencies>
...
</project>
If your artifact is provided by the JDK's tools.jar the system path would be defined as follows:

<project>
...
<dependencies>
<dependency>
<groupId>sun.jdk</groupId>
<artifactId>tools</artifactId>
<version>1.5.0</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
...
</project>

ok,so easy!

如果需要在 Maven 项目中引入本地的 jar 包,可以使用 Maven 的 `system` 作用域来引入本地包。 具体步骤如下: 1. 将本地 jar 包拷贝到项目中的某个目录下,例如 `lib/` 目录。 2. 在 pom.xml 文件中添加依赖项,设置 `system` 作用域和 `systemPath` 参数,例如: ``` <dependency> <groupId>com.example</groupId> <artifactId>example-library</artifactId> <version>1.0.0</version> <scope>system</scope> <systemPath>${basedir}/lib/example-library.jar</systemPath> </dependency> ``` 其中,`groupId`、`artifactId`、`version` 分别表示依赖包的坐标,`scope` 表示依赖包的作用域,`system` 表示该依赖包不会被传递给其他项目;`systemPath` 表示依赖包在本地的路径,`${basedir}` 表示项目根目录。 3. 运行 `mvn install` 命令,将本地包安装到本地 Maven 仓库中。 在执行该命令前,需要保证本地包已经拷贝到了项目中的 `lib/` 目录下,并且 `pom.xml` 文件中已经添加了依赖项。执行该命令后,Maven 会将本地包安装到本地 Maven 仓库中,以便在项目中引用。 如果不想将本地包安装到本地 Maven 仓库中,也可以使用 `-Dmaven.repo.local` 参数指定一个临时的本地 Maven 仓库目录,例如: ``` mvn install:install-file -Dfile=lib/example-library.jar -DgroupId=com.example -DartifactId=example-library -Dversion=1.0.0 -Dpackaging=jar -Dmaven.repo.local=/tmp/maven-repo ``` 其中,`-Dmaven.repo.local` 参数指定了一个临时的本地 Maven 仓库目录 `/tmp/maven-repo`。执行该命令后,Maven 会将本地包安装到指定的本地 Maven 仓库目录中。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值