中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

maven怎么打包第三方jar包

小億
220
2024-02-27 10:38:03
欄目: 編程語言

要打包第三方jar包,可以通過以下幾種方式:

  1. 將第三方jar包手動放入項目的lib目錄中,然后在pom.xml文件中使用system指定該jar包的路徑,這樣在打包時會將該jar包一起打包到最終的輸出文件中。
<dependency>
    <groupId>com.example</groupId>
    <artifactId>example</artifactId>
    <version>1.0</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/lib/example.jar</systemPath>
</dependency>
  1. 使用Maven插件將第三方jar包安裝到本地倉庫中,然后在pom.xml文件中正常引入該依賴即可。
mvn install:install-file -Dfile=path/to/example.jar -DgroupId=com.example -DartifactId=example -Dversion=1.0 -Dpackaging=jar
<dependency>
    <groupId>com.example</groupId>
    <artifactId>example</artifactId>
    <version>1.0</version>
</dependency>
  1. 使用Maven的assembly插件將項目及第三方jar包一起打包成一個可執行的jar包。

在pom.xml文件中配置assembly插件:

<plugin>
    <artifactId>maven-assembly-plugin</artifactId>
    <version>3.3.0</version>
    <configuration>
        <archive>
            <manifest>
                <mainClass>com.example.MainClass</mainClass>
            </manifest>
        </archive>
        <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
        </descriptorRefs>
    </configuration>
    <executions>
        <execution>
            <id>make-assembly</id>
            <phase>package</phase>
            <goals>
                <goal>single</goal>
            </goals>
        </execution>
    </executions>
</plugin>

執行mvn clean package命令即可打包生成含有第三方jar包的可執行jar文件。

0
津市市| 兴和县| 宁晋县| 合水县| 聂拉木县| 全南县| 特克斯县| 诸暨市| 新竹市| 新沂市| 慈利县| 博客| 伊金霍洛旗| 武宁县| 无为县| 淮阳县| 新源县| 千阳县| 略阳县| 苍溪县| 长岛县| 旌德县| 扎鲁特旗| 宁河县| 通辽市| 四子王旗| 都安| 收藏| 安康市| 济南市| 安庆市| 油尖旺区| 高要市| 红桥区| 荣昌县| 阿荣旗| 申扎县| 榆树市| 孝感市| 永嘉县| 鄢陵县|