工程坐标: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>
标签中的