我想编写一个FMPP前端应用程序,但官方文档没有解释如何在maven项目中包含FMPP库,而是解释插件。所以我想知道如何包含库,以便我可以扩展fmpp.setting.Settings;
对象。
我在 fmpp-maven-plugin 依赖项:)中找到了它,所以只需在 pom 的依赖项块中包含这样的东西.xml
<dependency>
<groupId>net.sourceforge.fmpp</groupId>
<artifactId>fmpp</artifactId>
<version>0.9.15</version>
</dependency>
然后使用"清理并构建"并尝试在任何 Java 文件中使用:
import fmpp.setting.Settings;
就是这样!