我无法将所需的库打包到我的Jar中,shadow插件在控制台中未提供任何形式的输出,这使得很难描述这里发生的事情,因为它缺少更多内容。

    <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>


我认为不应该这样吗?

这是我要打包的lib:

<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

最佳答案

首先以in here的形式检查插件定义是否在pom中,而不是在父pom中(如果有的话)

然后确保(如this answer中一样)plugin节位于build节内,而不是build/pluginManagement节。

如果您想要更多的痕迹,mvn -X clean install将会更详细。

关于java - 尝试将特定的lib打包到我的jar中,无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55718199/

10-14 12:20