欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Eclipse中使用maven

程序员文章站 2022-05-04 15:09:46
...

1.准备工作

1.下载maven并配置maven,可参考我的maven安装教程,
链接: maven的安装.
2.建议更新新eclipse软件,毕竟新的东西有自己的好处,比如老一点的eclipse中没maven,还得自己去下载插件,新版中直接就有。
3.有的朋友可能对eclipse下载不太了解,及下载慢问题,可以看我的eclipse安装下载安装教程。
链接: eclipse下载慢的安装.
4.链接:学习笔记 maven学习笔记.

2.进入主题

打开eclipse软件。
进入PreFereences

Eclipse中使用maven
Eclipse中使用maven

Eclipse中使用maven
Eclipse中使用maven

3.配置本地仓库

进入PreFereences

Eclipse中使用maven
Eclipse中使用maven
Eclipse中使用maven

4.测试

新建项目

Eclipse中使用maven
Eclipse中使用maven
Eclipse中使用maven
说明:
Eclipse中使用maven
生成的项目结构:
Eclipse中使用maven
添加junit依赖进行maven测试。
Eclipse中使用maven

<dependency>
	    <groupId>junit</groupId>
	    <artifactId>junit</artifactId>
	    <version>4.13</version>
	    <scope>test</scope>
	</dependency>
 
 </dependencies>

Eclipse中使用maven

package test;

import org.junit.Test;

public class test {
   @Test
   public void helloMaven() {
   	System.out.println("我是maven");
   }

}

结果:
Eclipse中使用maven

eclipse中maven命令

maven的基本命令在eclipse中也有,点击项目——》右键——》run as就可以看到基本命令
如果对maven的基本命令不熟悉,可以看我的maven学习笔记链接: maven学习笔记.