第三个Maven工程

工程坐标:groupId:com.atguigu.maven,ArtifactId:MakeFriends,Package:com.atguigu.maven
在src/main/java中新建类com.atguigu.maven.MakeFriends:

package com.atguigu.maven;

public class MakeFriends {
    public String makeFriends(String name){
        HelloFriend friend = new HelloFriend();
        friend.sayHelloToFriend("litingwei");
        String str = "Hey,"+friend.getMyName()+" make a friend please.";
        System.out.println(str);
        return str;
    }
}

可以看到,HelloFriend friend = new HelloFriend();是可以正常找到HelloFriend的,这是eclipse的功劳,但是呢它找到的是在eclipse当前工作区下的,就是下图这个东东
这里写图片描述
这样子在开发的时候是没问题的,但是我们如果后期打包要执行compile命令编译打包的话,它就不行了,因为仓库里没有HelloFriend,HelloFriend得经过Maven install安装命令安装到仓库才可以被找到,这个要注意!!!

在src/test/java中新建类com.atguigu.maven.MakeFriendsTest:

package com.atguigu.maven;

import static junit.framework.Assert.assertEquals;
import org.junit.Test;

public class MakeFriendsTest {
    @Test
    public void testMakeFriends() {
        MakeFriends makeFriend = new MakeFriends();
        String str = makeFriend.makeFriends("litingwei");
        assertEquals("Hey,John make a friend please.", str);
    }
}

pom.xml中添加依赖信息:

<dependencies>
      <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.9</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atguigu.maven</groupId>
            <artifactId>HelloFriend</artifactId>
            <version>0.0.1-SNAPSHOT</version>
            <type>jar</type>
            <scope>compile</scope>
        </dependency>
  </dependencies>

依赖要记得是放在<dependencies></dependencies>标签中的

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值