1. 程式人生 > >maven專案中,呼叫了第三方jar包,新增jar到pom中。

maven專案中,呼叫了第三方jar包,新增jar到pom中。

直接將jar包拷貝到專案指定目錄下,然後在pom檔案中指定依賴型別為system。

<dependencies>
    <dependency>
        <groupId>xxx</groupId>
        <artifactId>xxx</artifactId>
        <version>6.0</version>
        <scope>system</scope>
        <systemPath>${project.basedir}/libs/xxx-1.0.jar</systemPath>
    </dependency>
</dependencies>

源地址:https://www.cnblogs.com/nuccch/p/6122938.html