我在骆驼 (Servicemix 5.4.0) 工作,我在 pom 中收到以下 sql 的错误消息
I am working in camel (Servicemix 5.4.0) i am getting below error message for sql in pom
我在 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>
请帮帮我
此驱动程序不在 Maven 标准存储库中。
您可以下载它,并添加到您的本地存储库:
mvn install:install-file -Dfile=sqljdbc4.jar -DgroupId=com.microsoft.sqlserver -DartifactId=sqljdbc4 -Dversion=4.0 -Dpackaging=jar
为驱动程序下载 link:
http://www.microsoft.com/en-us/download/details.aspx?id=11774
我在 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>
请帮帮我
此驱动程序不在 Maven 标准存储库中。
您可以下载它,并添加到您的本地存储库:
mvn install:install-file -Dfile=sqljdbc4.jar -DgroupId=com.microsoft.sqlserver -DartifactId=sqljdbc4 -Dversion=4.0 -Dpackaging=jar
为驱动程序下载 link:
http://www.microsoft.com/en-us/download/details.aspx?id=11774