从现在开始一周,我正试图在日食中创建一个带有maven的可执行jar,但我遇到了麻烦。这是我拥有的和我做的:
我的pom.xml文件的内容:
< project xmlns =“http:// …
我无法使用 Top-Q公共存储库 因为工件丢失了。 所以我必须将JAR安装到我的本地Maven存储库中:
运行>运行配置> Maven Build(双击)
目标是:
install:install-file -Dfile=${basedir}/src/main/resources/net.sourceforge.jpcap-0.01.16.jar -DgroupId=net.sourceforge.jpcap -DartifactId=local -Dversion=0.01.16 -Dpackaging=jar
我现在可以在pom.xml中,只需使用:
<dependency> <groupId>net.sourceforge.jpcap</groupId> <artifactId>local</artifactId> <version>0.01.16</version> </dependency>
谢谢 deHaar