我正在尝试在我的pom.xml中设置maven依赖项,但是当我启动服务器并运行使用maven依赖项的方法时,我收到此错误:http://pastebin.com/AZrse1PW这是我的pom.xml: http://pastebin.com/nEcS4drA。
感谢您的帮助, 添
答案 0 :(得分:0)
您没有对FancyMessage / Fanciful进行着色,因此它在运行时不存在。将以下插件添加到您的pom.xml:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>false</minimizeJar>
<artifactSet>
<includes>
<include>mkremins:fanciful</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>