maven(二)

maven中jar包冲突问题解决
   1.通过添加<exclusion>标签来解决冲突

      依赖调解原则:

      maven自动按照下边的原则调解:
   第一声明者优先原则
     在pom文件定义依赖,先声明的依赖为准。
     测试:
        如果将上边struts-spring-plugins和spring-context顺序颠倒,系统将导入spring-beans-4.2.4。
     分析:
        由于spring-context在前边以spring-context依赖的spring-beans-4.2.4为准,所以最终spring-beans-4.2.4添加到了工程中。

    路径近者优先原则
        例如:A依赖 spirng-beans-4.2.4,A依赖B依赖 spirng-beans-3.0.5,则spring-beans-4.2.4优先被依赖在A中,因为spring-beans-4.2.4相对spirng-beans-3.0.5被A依赖的路径最近。
       测试:
        在工程的pom中加入
spirng-beans-4.2.4的依赖,根据路径近者优先原则,系统将导入spirng-beans-4.2.4:

   2.使用版本锁定实现冲突解决
       <dependencyManagement></dependencyManagement>

maven私服
# Jetty section
application-port=8081   # nexus的访问端口配置
application-host=0.0.0.0  # nexus主机监听配置(不用修改)
nexus-webapp=${bundleBasedir}/nexus  # nexus工程目录
nexus-webapp-context-path=/nexus  # nexus的web访问路径

# Nexus section
nexus-work=${bundleBasedir}/../sonatype-work/nexus   # nexus仓库目录
runtime=${bundleBasedir}/nexus/WEB-INF  # nexus运行程序目录

nexus仓库的4中类型
      hosted,宿主仓库,部署自己的jar到这个类型的仓库,包括releases和snapshot两部分,Releases公司内部发布版本仓库、 Snapshots 公司内部测试版本仓库
       proxy,代理仓库,用于代理远程的公共仓库,如maven中央仓库,用户连接私服,私服自动去中央仓库下载jar包或者插件。
       group,仓库组,用来合并多个hosted/proxy仓库,通常我们配置自己的maven连接仓库组。
       virtual(虚拟):兼容Maven1 版本的jar或者插件.
nexus仓库默认在sonatype-work目录中:
       central:代理仓库,代理中央仓库
       apache-snapshots:代理仓库

存储snapshots构件,代理地址https://repository.apache.org/snapshots/

central-m1:virtual类型仓库,兼容Maven1 版本的jar或者插件

releases:本地仓库,存储releases构件。

snapshots:本地仓库,存储snapshots构件。

thirdparty:第三方仓库

public:仓库组


将项目发布到私服
第一步: 需要在客户端即部署工程的电脑上配置 maven环境,并修改 settings.xml 文件,配置连接私服的用户和密码 。
               此用户名和密码用于私服校验,因为私服需要知道上传都 的账号和密码 是否和私服中的账号和密码 一致。
   <server>
      <id>releases</id>
      <username>admin</username>
      <password>admin123</password
   </server>
   <server>
      <id>snapshots</id>
      <username>admin</username>
      <password>admin123</password>
   </server>
releases 连接发布版本项目仓库
snapshots 连接测试版本项目仓库

第二步: 配置项目pom.xml
      配置私服仓库的地址,自己的jar包会上传到私服的宿主仓库,根据工程的版本号决定上传到哪个宿主仓库,如果版本为release则上传到私服的release仓库,如果版本为snapshot则上传到私服的snapshot仓库
<distributionManagement>

   <repository>

   <id>releases</id>

   <url>http://localhost:8081/nexus/content/repositories/releases/</url>

   </repository> 

   <snapshotRepository>

   <id>snapshots</id>

  <url>http://localhost:8081/nexus/content/repositories/snapshots/</url>

   </snapshotRepository> 

  </distributionManagement>

注意:pom.xml这里<id> 和 settings.xml 配置 <id> 对应!

 

测试

将项目工程打成jar包发布到私服:

1、首先启动nexus

2、对工程执行deploy命令

        根据本项目pom.xml中version定义决定发布到哪个仓库,如果version定义为snapshot,执行deploy后查看nexus的snapshot仓库,如果version定义为release则项目将发布到nexus的release仓库,本项目将发布到snapshot仓库:也可以通过http方式查看:

     没有配置nexus之前,如果本地仓库没有,去中央仓库下载,通常在企业中会在局域网内部署一台私服服务器,有了私服本地项目首先去本地仓库找jar,如果没有找到则连接私服从私服下载jar包,如果私服没有jar包私服同时作为代理服务器从中央仓库下载jar包,这样做的好处是一方面由私服对公司项目的依赖jar包统一管理,一方面提高下载速度,项目连接私服下载jar包的速度要比项目连接中央仓库的速度快的多。


 

​​​​​​​在setting.xml中配置仓库
在客户端的setting.xml中配置私服的仓库,由于setting.xml中没有repositories的配置标签需要使用profile定义仓库。
<profile>   
    <!--profile的id-->
    <id>dev</id>   
    <repositories>   
       <repository>  
        <!--仓库id,repositories可以配置多个仓库,保证id不重复-->
         <id>nexus</id>   
         <!--仓库地址,即nexus仓库组的地址-->
         <url>http://localhost:8081/nexus/content/groups/public/</url>   
         <!--是否下载releases构件-->
         <releases>   
            <enabled>true</enabled>   
         </releases>   
         <!--是否下载snapshots构件-->
         <snapshots>   
             <enabled>true</enabled>   
        </snapshots>   
     </repository>   
   </repositories>  
   <pluginRepositories>  
        <!-- 插件仓库,maven的运行依赖插件,也需要从私服下载插件 -->
         <pluginRepository>  
            <!-- 插件仓库的id不允许重复,如果重复后边配置会覆盖前边 -->
            <id>public</id>  
            <name>Public Repositories</name>  
            <url>http://localhost:8081/nexus/content/groups/public/</url>  
         </pluginRepository>  
   </pluginRepositories>
</profile>  

使用profile定义仓库需要激活才可生效。
<activeProfiles>
    <activeProfile>dev</activeProfile>
 </activeProfiles>
  配置成功后通过eclipse查看有效pom,有效pom是maven软件最终使用的pom内容.


 

有效pom内容如下:

下边的pom内容中有两个仓库地址,maven会先从前边的仓库的找,如果找不到jar包再从下边的找,从而就实现了从私服下载jar包。

<repositories>

    <repository>

      <releases>

        <enabled>true</enabled>

      </releases>

      <snapshots>

        <enabled>true</enabled>

      </snapshots>

      <id>public</id>

      <name>Public Repositories</name>

      <url>http://localhost:8081/nexus/content/groups/public/</url>

    </repository>

    <repository>

      <snapshots>

        <enabled>false</enabled>

      </snapshots>

      <id>central</id>

      <name>Central Repository</name>

      <url>https://repo.maven.apache.org/maven2</url>

    </repository>

  </repositories>

  <pluginRepositories>

    <pluginRepository>

      <id>public</id>

      <name>Public Repositories</name>

      <url>http://localhost:8081/nexus/content/groups/public/</url>

    </pluginRepository>

    <pluginRepository>

      <releases>

        <updatePolicy>never</updatePolicy>

      </releases>

      <snapshots>

        <enabled>false</enabled>

      </snapshots>

      <id>central</id>

      <name>Central Repository</name>

      <url>https://repo.maven.apache.org/maven2</url>

    </pluginRepository>

  </pluginRepositories>

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值