myeclipse发布jar到nexus私服上

第一步设置setting.xml:

 

 

 

          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">

 

  G:\Maven\Repository

 

  

    org.eclipse.jetty

  

 

  

  

      releases

      admin

      admin123

    

    

      snapshots

      admin

      admin123

    

  

 

 

  

      

      youcash-mirror  

      *

      http://172.16.240.9:8081/repository/maven-public/

  

    

  

 

  

  

central-override-profile

true

central

http://central

truealways

alwaystrue

central

http://central

truealways

alwaystrue

  

  

 

 

 

 

 

第二步设置mavne工程的pom

 

 

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 

http://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

com.liu

weizhi

0.0.1-SNAPSHOT

  jar

  

  

      

    

        releases

        releases

        http://172.16.240.9:8081/repository/maven-releases/

    

    

    

        snapshots

        snapshots

        http://172.16.240.9:8081/repository/maven-snapshots/

    

  

 

 

 

记得repository的id  releases和snapshots 必须要跟setting.xml保持一致。

 

只需要设置这步即可。

 

myeclipse上传jar到私服的操作:

右键工程,run as  选择maven build ....

 

在弹出界面的goals中输入 deploy -X 即可上传jar到私服。-X的意思,是maven的日志输出debug模式。

myeclipse发布jar到nexus私服上_第1张图片
 

 

上传成功,不需要在pom中去引入插件plugins maven-deploy-plugins之类的

你可能感兴趣的:(myeclipse发布jar到nexus私服上)