0

我需要在我的系统中安装数据库单元。我已完成安装 JDBC 驱动程序。我已经下载了junit-4.11.jar。

我必须将 jar 文件生成到目录中。这样做的正确方法/步骤是什么。按照链接: http ://www.dbunit.org/building.html

我试图从命令行运行mvn命令。但我得到了错误

C:\Users\suvin>mvn install

[INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 0.225s [INFO] Finished at: Tue Nov 20 14:51:56 IST 2012 [INFO] Final Memory: 1M/15M [INFO] ------------------------------------------------------------------------ [ERROR] The goal you specified requires a project to execute but there is no POM in this directory (C:\Users\suvin). Please verify you invoked Maven from the co rrect 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/MissingProject Exception

任何帮助,将不胜感激

4

2 回答 2

0

dbUnit 依赖项是否包含在 POM 文件中,如果是,mvn install 会执行您期望的操作

  <dependency>
    <groupId>org.dbunit</groupId>
    <artifactId>dbunit</artifactId>
    <version>2.4.3</version>
</dependency>
于 2012-11-20T09:46:55.320 回答
0

似乎C:\Users\suvin位置没有 pom 文件,在执行“mvn install”之前,您的命令提示符应该位于您的 POM 文件所在的位置。

供您参考。

通常,您可以从源代码构建(编译)它并获取您的 jar。要构建源代码,您可以使用 ant 或 maven,它们是 java 中的一些构建工具。源代码提供者通过 build.xml 或 pom.xml 或两者提供其源代码。您可以使用您的构建技术来编译该 java 源并从中获取 jar。

你可以从网上学习antmaven

于 2012-11-20T09:39:25.653 回答