新闻要适合直接感兴趣的人口味。——马克思

我今天遇到了一个报错…

image-20211231215810236

我仔细一看发现jar包才893KB大小

image-20211231220029174

检查了一下打包配置,发现:

image-20211231220900705

这块少了个repackage配置…

1
2
3
4
5
6
7
8
<executions>
<execution>
<id>repackage</id>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>

加上就可以了

image-20211231220947459

再次打包就好了