java – 为什么“mvn assembly:single”只用程序集创建一个胖jar而不是我的代码?

前端之家收集整理的这篇文章主要介绍了java – 为什么“mvn assembly:single”只用程序集创建一个胖jar而不是我的代码?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个用 spring roo创建的maven项目.当我运行mvn assembly:single我得到一个包含所有依赖项的胖jar,但不是我写的实际代码.这是我的pom.xml中的maven-assembly-plugin配置:
<plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.2.1</version>
            <configuration>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
                <archive>
                    <manifest>
                        <mainClass>net.justaprogrammer.poi.cleanser.Cleanser</mainClass>
                    </manifest>
                </archive>
            </configuration>
        </plugin>

我究竟做错了什么?

解决方法

我会说你做的完全就够了.而不是汇编:单一,做:
mvn clean compile assembly:single

你应该好好去.

原文链接:https://www.f2er.com/java/125887.html

猜你在找的Java相关文章