我在camel(Servicemix 5.4.0)工作我收到pom中sql的错误消息

时间:2015-02-24 12:12:02

标签: java sql apache-camel pom.xml apache-servicemix

我在camel(Servicemix 5.4.0)工作我在使用mvn install编译项目时收到以下错误消息

com.microsoft.sqlserver:sqljdbc4:jar:4.0: Failure to find
com.microsoft.sqlserver:sqljdbc:jar:4.0.2206.100 in https://repo.maven.apache.or
g/maven2 was cached in the local repository, resolution will not be reattempted
until the update interval of central has elapsed or updates are forced 

我认为可能是因为pom.xml依赖部分。 我在pom.xml

中给出了以下依赖关系
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>sqljdbc4</artifactId>
<version>4.0</version>
<scope>runtime</scope>
</dependency>

请帮帮我

1 个答案:

答案 0 :(得分:0)

此驱动程序不在 Maven标准存储库中。

您可以下载它,并使用以下命令添加到本地存储库:

mvn install:install-file -Dfile=sqljdbc4.jar -DgroupId=com.microsoft.sqlserver -DartifactId=sqljdbc4 -Dversion=4.0 -Dpackaging=jar

下载驱动程序链接:

http://www.microsoft.com/en-us/download/details.aspx?id=11774