1

我无法将所需的库打包到我的 Jar 中,shade 插件不会在控制台中提供任何类型的输出,这使得描述这里发生的事情有点困难,因为它更缺乏。

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-shade-plugin</artifactId>
        <version>2.4.3</version>
        <executions>
            <execution>
                <phase>package</phase>
                <goals>
                    <goal>shade</goal>
                </goals>
                <configuration>
                    <artifactSet>
                        <includes>
                            <include>org.javacord:javacord</include>
                        </includes>
                    </artifactSet>
                </configuration>
            </execution>
        </executions>
    </plugin>

我认为不应该这样做吗?

这是我要打包的库:

<dependency>
    <groupId>org.javacord</groupId>
    <artifactId>javacord</artifactId>
    <version>3.0.4</version>
    <type>pom</type>
    <scope>provided</scope>
</dependency>

控制台输出粘贴在这里:https ://hastebin.com/soxafiqupe.cs

4

1 回答 1

0

首先检查您的插件定义是否您的 pom 中,而不是您的父 pom(如果有的话)

然后确保(如this answer中)该plugin部分在一个build部分内,而不是build/pluginManagement一个。

如果你想要更多的踪迹, amvn -X clean install会更冗长。

于 2019-04-17T04:38:48.410 回答