码迷,mamicode.com
首页 > 数据库 > 详细

maven_修改setting ,改为自己私服或者OSC开源中国 [为解决sqlite-jdbc 在中央仓库找不到]

时间:2014-05-07 19:00:40      阅读:524      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   color   

因为项目要使用到sqlite ,虽然有现成的jar,但是考虑的项目的易用统一管理,决定还是用maven

结果纠结了半天 sqlite-jdbc 在maven默认的仓库根本找不着,于是乎修改 setting 采用开源中国基于neuxs

的仓库

bubuko.com,布布扣
<dependency>
            <groupId>com.github.axet.sqlite4java</groupId>
            <artifactId>sqlite4java</artifactId>
            <version>0.282-3</version>
        </dependency>
        <dependency>
            <groupId>org.xerial</groupId>
            <artifactId>sqlite-jdbc</artifactId>
            <version>3.7.2</version>
        </dependency>
bubuko.com,布布扣

 

修改 : C:\Users\Administrator\.m2\settings.xml

 

bubuko.com,布布扣
 <mirrors>
        <!-- mirror | Specifies a repository mirror site to use instead of a given
            repository. The repository that | this mirror serves has an ID that matches
            the mirrorOf element of this mirror. IDs are used | for inheritance and direct
            lookup purposes, and must be unique across the set of mirrors. | -->
        <mirror>
            <id>nexus-osc</id>
            <mirrorOf>*</mirrorOf>
            <name>Nexus osc</name>
            <url>http://maven.oschina.net/content/groups/public/</url>
        </mirror>
    </mirrors>
  
bubuko.com,布布扣

重启工具

maven_修改setting ,改为自己私服或者OSC开源中国 [为解决sqlite-jdbc 在中央仓库找不到],布布扣,bubuko.com

maven_修改setting ,改为自己私服或者OSC开源中国 [为解决sqlite-jdbc 在中央仓库找不到]

标签:style   blog   class   code   java   color   

原文地址:http://www.cnblogs.com/cphmvp/p/3709772.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!