如何在Eclipse中配置并使用Maven?

1.配置Maven

2.创建Maven项目

3.导入Maven项目

4.编译并打包Maven项目

1.配置Maven

打开Eclipse IDE 点击菜单栏 "Window" ----> "Preference", settings.xml在下面。

image.png

搜索Maven点击 "User Setting",浏览找到 settings.xml 点击 "Update Settings" ----> "Apply and Close",这样你的Maven就配置好了。

image.png


  D:/Eclipse_space/my_maven_local_repository
  
  
  
  
  
  

  
      
            alimaven
            central
            aliyun maven
            http://maven.aliyun.com/nexus/content/repositories/central
        

        
            alimaven
            aliyun maven
            http://maven.aliyun.com/nexus/content/groups/public
            central
        

        
            central
            Maven Repository Switchboard
            http://repo1.maven.org/maven2
            central
        

        
            repo2
            central
            Human Readable Name for this Mirror.
            http://repo2.maven.org/maven2
        

        
            ibiblio
            central
            Human Readable Name for this Mirror.
            http://mirrors.ibiblio.org/pub/mirrors/maven2
        

        
            jboss-public-repository-group
            central
            JBoss Public Repository Group
            http://repository.jboss.org/nexus/content/groups/public
        

        
            google-maven-central
            Google Maven Central
            https://maven-central.storage.googleapis.com
            
            central
        

        
            maven.net.cn
            oneof the central mirrors in china
            http://maven.net.cn/content/groups/public
            central
          
  

  
      
                jdk-1.8
                
                      true
                      1.8
                
                
                      1.8
                      1.8
                      1.8
                
         
         
                repository_set
                
                        
                            
                                false
                            
                            public
                            Public Repository
                            http://maven.aliyun.com/nexus/content/groups/public
                        
                
                
                        
                              
                                    never
                              
                              
                                    false
                              
                              public
                              Public Repository
                              http://maven.aliyun.com/nexus/content/groups/public
                        
                 
            
      

2.创建Maven项目
打开Eclipse IDE 点击菜单栏 "File"----> "New" ----> "Maven Project" 点击 "Next" , 默认选择 "quickstart", 继续点击 "Next"


image.png
image.png
image.png

输入你的Package到Group Id,输入你的项目名到Artifact Id,点击 "Finish"。
完成以上你已经建好了一个Maven项目。

3.导入Maven项目
打开Eclipse IDE 点击菜单栏 "File"----> "Import",搜索Maven 选择 "Existing Maven Projects",点击 "Next".

image.png

点击浏览(Browse),找到要导入的Maven项目,如果显示如下图的pom.xml,那么它就是正确的。然后点击 "Finish"。

image.png

完成以上你已经把你已有的Maven项目导入进来了。

4.编译并打包Maven项目
首先,你需要右击你的Maven项目,然后点击 "Maven" ----> "Update Project", 选择你的项目点击 "OK"


image.png
image.png

右击你的项目点击 "Run As" ----> "Maven build"
Goals: clean compile package(须为小写)
(clean: 清除target中已经编译过的文件)
(compile: 编译你的代码)
(package: 把你的项目打包)
点击 "Run"。

查看你的控制台,找到你的.jar文件的路径。


image.png

你可能感兴趣的:(如何在Eclipse中配置并使用Maven?)