您好,欢迎来到保捱科技网。
搜索
您的当前位置:首页带着依赖项打包

带着依赖项打包

来源:保捱科技网

带着依赖项打包

问题:普通打包默认是不会带上第三方库的,所以需要通过配置来打包

解决:pom.xml中加上

            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifest>
                            <mainClass>xxx.xxx.App</mainClass>
                        </manifest>
                    </archive>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>
            </plugin>

打包使用命令:

mvn clean package assembly:single

因篇幅问题不能全部显示,请点此查看更多更全内容

Copyright © 2019- baoaiwan.cn 版权所有 赣ICP备2024042794号-3

违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务