我无法将所需的库打包到我的 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