用maven安装microsoft sqljdbc驱动程序

时间:2015-02-18 04:27:26

标签: java maven

我有一个maven项目,我需要向Microsoft sqljdbc驱动程序添加依赖项。

我已按照本文here

中显示的步骤操作

但是当我尝试第一步时,我得到以下错误

[ERROR] The goal you specified requires a project to execute but there is no POM in this directory (C:\soft\sqljdbc_4.1\
enu). Please verify you invoked Maven from the correct directory. ->   [Help 1]

1 个答案:

答案 0 :(得分:2)

我找到了问题的解决方案。我们需要像这样

给出包含在双重配额""中的所有参数
mvn install:install-file "-DgroupId=com.microsoft.sqlserver" "-DartifactId=sqljdbc41"  "-Dversion=4.1"  "-Dpackaging=jar" "-Dfile=sqljdbc41.jar" 

然后只有maven会安装没有pom文件的文件

this question中的答案帮助了我