`
wj98127
  • 浏览: 263895 次
  • 性别: Icon_minigender_2
  • 来自: 北京
社区版块
存档分类
最新评论

artifactory私服安装和依赖包变量配置

阅读更多
artifactory私服安装
    下载最新版本的artifactory安装文件(http://sourceforge.net/project/showfiles.php?group_id=175347&package_id=201243&release_id=607409),windows下一个bat文件直接启动,之后修改$user/.m2/settings.xml配置文件,加入
<repositories> 
     <repository> 
         <id>central</id> 
         <url>http://localhost:8081/artifactory/repo</url> 
         <snapshots> 
             <enabled>false</enabled> 
         </snapshots> 
     </repository> 
     <repository> 
         <id>snapshots</id> 
         <url>http://localhost:8081/artifactory/repo</url> 
         <releases> 
             <enabled>false</enabled> 
         </releases> 
     </repository> 
</repositories> 
<pluginRepositories> 
     <pluginRepository> 
         <id>central</id> 
         <url>http://localhost:8081/artifactory/plugins-releases</url> 
         <snapshots> 
             <enabled>false</enabled> 
         </snapshots> 
     </pluginRepository> 
     <pluginRepository> 
         <id>snapshots</id> 
         <url>http://localhost:8081/artifactory/plugins-snapshots</url> 
         <releases> 
             <enabled>false</enabled> 
         </releases> 
     </pluginRepository> 
</pluginRepositories>   


maven的Library变量 M2_REPO
     在eclipse中操作:Window -> Preferences -> Java -> Build Path -> Classpath Variables,NewName 填写"M2_REPO",路径为$user\.m2\repository

apache配置文件加入
<Directory "/home/wwwroot/maven2">
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics