maven 连接私服

来源:互联网 发布:绿茶和咖啡 知乎 编辑:程序博客网 时间:2024/04/29 14:38

1、下载jar到 maven 目录
2、安装到创库
demo

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

3、maven引用
demo

<dependency>    <groupId>com.microsoft.sqlserver</groupId>    <artifactId>sqljdbc4</artifactId>    <version>4.0</version></dependency>
0 0