我有一个第三方依赖jar,需要安装才能构建我的项目。我知道这可以使用install命令完成,但我需要的是在构建项目时安装它。所以不需要手动安装jar,有办法吗?
我找到了类似的东西来安装插件
<configuration>
<executable>mvn</executable>
<arguments>
<argument>install:install-file</argument>
<argument>-Dfile=${basedir}\src\main\resources\EVIPSoapServer.jar</argument>
<argument>-DgroupId=com.company</argument>
<argument>-DartifactId=EVIPSoapServer</argument>
<argument>-Dversion=1.0.0</argument>
<argument>-Dpackaging=jar</argument>
</arguments>
有没有办法安装依赖项?
答案 0 :(得分:2)
更好的方法是创建一个多模块maven项目,将第三方库作为一个模块,将项目作为另一个模块。在根pom.xml中,您可以编写构建序列,并在安装项目之前负责安装第三方jar。
以下是您的教程Link 1
修改强>
从评论中看,您似乎只需要在安装时可用依赖jar。为此,最好的方法是使用系统范围的依赖关系,第三方jar保存在maven项目结构本身的文件夹中。示例如下。阅读此link。这样,maven就不会检查jar是否存在于本地或远程maven仓库中。
<dependency>
<groupId>javax.sql</groupId>
<artifactId>jdbc-stdext</artifactId>
<version>2.0</version>
<scope>system</scope>
<systemPath>${your.path.here}</systemPath>
</dependency>
答案 1 :(得分:1)