Maven、Nexus学习2

一、前提

1.1 创建了4个Maven工程,add,sub工程中分别有一个类实现了加减法,mix则去调用其他三个工程的方法,来实现计算。

add-AddClass
Sub-Substract
mix-Mix

1.2 AddClass:
package add;
public classAddClass {
    public int add(int x,int y){
        return(x+y);
    }
}

Add:pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>com.a</groupId>
   <artifactId>add</artifactId>
   <version>0.0.1-SNAPSHOT</version>
   <name>Add</name>
   <description>加法</description>
</project>
1.3 Substract:
package sub;
public classSubstract {
  public int subStrace(intx,inty){
    return (x-y);
   }
}

Sub:pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>com.a</groupId>
   <artifactId>sub</artifactId>
   <version>0.0.1-SNAPSHOT</version>
   <name>Sub</name>
</project>
1.4 Mix:
package mix;
import sub.Substract;
public classMix {
 //Substractsub=new Substract();
 //Multiply mix=new Multiply();
  public int mix(int x,int y ,int z){
    return x-y*z;
   }
}

Mix:pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>com.a</groupId>
   <artifactId>mix</artifactId>
   <version>0.0.1-SNAPSHOT</version>
   <name>Mix</name>
</project>
1.5 nexus私服搭建
将下载的nexus bundle包解压到本地磁盘下面,然后进入路径:

D:\software\nexus-2.8.1-01-bundle\nexus-2.8.1-01\bin\jsw\windows-x86-64执行console-nexus.bat如下图所示,然后就可以在浏览器中通过链接:
nexus访问私服,默认端口为8081,默认用户为admin,密码admin123

psb.png
1.6 eclipse中设置maven的setting.xml

搭建好nexus私服后,需要在setting.xml设置远程仓库地址
Setting.xml内容如下:

<?xml version="1.0"encoding="UTF-8"?>
<settings>
   <mirrors>
      <mirror>
         <id>nexus</id>
         <mirrorOf>central</mirrorOf>
         <url>http://127.0.0.1:8081/nexus/content/groups/public</url>;
      </mirror>
   </mirrors>
   <profiles>
      <profile>
         <id>dev</id>
         <repositories>
            <repository>
                <id>releases</id>
                <url>http://127.0.0.1:8081/nexus/content/repositories/releases
               </url>
                <releases>
                   <enabled>true</enabled>
                </releases>
                <snapshots>
                   <enabled>true</enabled>
                </snapshots>
            </repository>
            <repository>
                <id>snapshots</id>
                <url>http://127.0.0.1:8081/nexus/content/repositories/snapshots
                </url>
                <releases>
                   <enabled>true</enabled>
                </releases>
                <snapshots>
                   <enabled>true</enabled>
                </snapshots>
            </repository>
            <repository>
                <id>thirdparty</id>
                <url>http://127.0.0.1:8081/nexus/content/repositories/thirdparty
                </url>
                <releases>
                   <enabled>true</enabled>
                </releases>
                <snapshots>
                   <enabled>true</enabled>
                </snapshots>
            </repository>
            <repository>
                <id>public</id>
                <url>http://127.0.0.1:8081/nexus/content/group/public
                </url>
                <releases>
                   <enabled>true</enabled>
                </releases>
                <snapshots>
                   <enabled>true</enabled>
                </snapshots>
            </repository>
         </repositories>
      </profile>
   </profiles>
   <activeProfiles>
      <activeProfile>dev</activeProfile>
   </activeProfiles>

 
   <!--<distributionManagement>
      <repository>
         <id>releases</id>
         <name>NexusRelease Repository</name>
         <url>http://127.0.0.1:8081/nexus/content/repositories/releases/
         </url>
      </repository>
      <snapshotRepository>
         <id>snapshots</id>
         <name>NexusSnapshot Repository</name>
         <url>http://127.0.0.1:8081/nexus/content/repositories/snapshots/
         </url>
      </snapshotRepository>
   </distributionManagement>
   -->
   
   <servers>
      <server>
         <id>snapshots</id>
         <username>admin</username>
         <password>admin123</password>
      </server>

      <server>
         <id>releases</id>
         <username>admin</username>
         <password>admin123</password>
      </server>

   </servers>
   <localRepository>D:\maven\mvnRespo</localRepository>
</settings>

二、实验

2.1 maven install操作

选择sub项目右键run as->maven install,查看控制台,当成功执行后看到结果:
Maven install会将sub项目打包,然后把jar包和pom.xml安装到本地仓库路径下面

psb[2].png
2.2 maven deploy

我想执行maven deploy,把项目jar包或者war包上传到私服,让大家共享,所以我选择sub项目右键run as -> runconfigurations->maven build 右键new ,创建如下图所示sub,填写图中标红的地方。

![
![Uploading psb[1]_459247.png . . .]].png](http://upload-images.jianshu.io/upload_images/1237796-3e705c79e7d43fa9.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

然后点击run,查看控制台,发现报错,查找后发现我pom.xml中没有上传到私服的配置

psb[1].png

修改sub 的pom.xml如下,其中distributionManagement即为添加的配置,然后在重新run就发现已经deploy到私服了,并且会重新install到本地仓库:

<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>com.a</groupId>
   <artifactId>sub</artifactId>
   <version>0.0.1-SNAPSHOT</version>
   <name>Sub</name>
   <distributionManagement>
      <repository>
         <id>releases</id>
         <name>Nexus Release Repository</name>
         <url>http://127.0.0.1:8081/nexus/content/repositories/releases/</url>
      </repository>
      <snapshotRepository>
         <id>snapshots</id>
         <name>Nexus Snapshot Repository</name>
         <url>http://127.0.0.1:8081/nexus/content/repositories/snapshots/</url>
      </snapshotRepository>
   </distributionManagement>
</project>
2.3在mix中访问工程sub方法

首先修改工程mix的类Mix如下,发现无法识别Substract,

只需要很简单一步就可以在mix工程中引用sub工程中方法了

修改mix的pom.xml文件如下即可:

<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>com.a</groupId>
   <artifactId>mix</artifactId>
   <version>0.0.1-SNAPSHOT</version>
   <name>Mix</name>
   <dependencies>
   <dependency>
   <groupId>com.a</groupId>
   <artifactId>sub</artifactId>
   <version>0.0.1-SNAPSHOT</version>
   </dependency>
   </dependencies>
</project>

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342

推荐阅读更多精彩内容

  • |-1-更新内容[6.从仓库解析依赖的机制(重要)] 1Maven仓库作用 仓库用来存储所有项目使用到构件,在ma...
    zlcook阅读 6,012评论 0 25
  • 首先私服是一种衍生出来的特殊的Maven远程仓库,构建私服的好处请看3.5私服 可以帮助大家建立私服的仓库管理软件...
    zlcook阅读 10,525评论 0 32
  • 王亦东在汉高的十多年里顺风顺水,一路做到全球副总裁、亚太区CFO,有足够的理由继续下去;但在同时,他十分清楚,这几...
    求研闵阅读 855评论 0 0
  • 1. 动漫是有生命力的,而且呈现从少年到成年的发展趋势。 动漫以日本自成特色,与其文化不无关系。业余时间学习日语,...
    ssp_hui阅读 204评论 0 0
  • 习惯了把学到的新东西都分享给身边的朋友,学习用知识引导生活。 今天下午,指导跟我们讲了好多干货,我就把对朋友们都有...
    桥桂同学阅读 296评论 0 1