我想在一个小项目中使用this库。我知道如何将jar文件添加到我的项目中,但我不知道如何使用maven。我在cmd中尝试了命令mvn clean package但是在安装maven后却只是错误:
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.070 s
[INFO] Finished at: 2017-08-22T18:23:04+04:30
[INFO] Final Memory: 5M/123M
[INFO] ------------------------------------------------------------------------
[ERROR] The goal you specified requires a project to execute but there is no POM in this directory (C:\Users\aran). Please verify you invoked Maven from the correct directory. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MissingProjectException
我试图在项目目录中打开cmd但没有帮助。 谁能帮我找到那个库的jar文件?或者给我一些关于如何使用maven的说明?
答案 0 :(得分:2)
我尝试了命令mvn clean package
尝试从项目目录中执行相同的命令(例如cd / User / you / yourFolder / mp3agic / ):
mvn clean package
同样在项目的pom.xml文件中,您需要为链接项目包含此依赖项:
<dependency>
<groupId>com.mpatric</groupId>
<artifactId>mp3agic</artifactId>
<version>0.9.0</version>
</dependency>
编辑:如果您的项目不是基于maven(如下面的评论中所述),您应首先将项目转换为maven项目,该项目将创建所需的pom.xml
,然后在项目中使用上述命令。这对此有用 - IntelliJ - Convert a Java project/module into a Maven project/module。
答案 1 :(得分:2)
您可以从here下载jar文件并将其添加到类路径中。
downlod链接位于Files。
旁边