Maven学习笔记(一、安装与配置)

阅读更多

 

一、下载maven的相应版本

        下载地址:http://maven.apache.org/download.cgi

 

二、将下载后的zip进行解压到相应的目录,进行环境变量的配置。新建一个M3_HOME指定目录,然后在path中加入%M3_HOME%\bin; 设置完成后通过cmd中输入mvn -v 查看是否配置正确(注意:有可能需要重启电脑)

 

三、在%M3_HOME%\conf下面找到settings.xml文件,里面有一个localRepository用来设置本地仓库的位置,在这里配置相当于一个全局的仓库,针对于系统中的所用用户项目;而在${user.home}/.m2/settings.xml       中配置的话,只会针对于当前登录用户起作用


  
D:\Soft\maven\maven-3.2-setting\repository

 

四、pom.xml 配置信息解释

 

 



    
    4.0.0
    
    com.myGroup
    
    EnterpriseMonitor
    
    war
    
    0.0.1-SNAPSHOT
    Enterprise Monitor
    
    XXX系统
    
    
        3.2.2.RELEASE
    
    
    
        XX公司
        http://www.xxx.com.cn/
    
    
    
        
            
                org.apache.maven.plugins
                maven-compiler-plugin
                
                
                    1.6
                    1.6
                    UTF-8
                
            
            
                org.apache.maven.plugins
                maven-resources-plugin
                2.3
                
                    UTF-8
                
                        
        
    
    
    
        
        
            offical
            Maven Official Repository
            http://repo1.maven.org/maven2
            
                false
            
                
        
            repo.springsource.org-release
            springsource repository
            http://repo.springsource.org/release
                
    

    
        
        
            org.springframework
            spring-webmvc
            
            ${springframework.version}
            
                
                    commons-logging
                    commons-logging
                
            
        

        
            org.springframework
            spring-web
            ${springframework.version}
        

        
            org.springframework
            spring-core
            ${springframework.version}
        

        
            org.springframework
            spring-context
            ${springframework.version}
            
                
                    commons-logging
                    commons-logging
                
            
        

        
            org.springframework
            spring-aspects
            ${springframework.version}
        

        
            org.springframework
            spring-context-support
            ${springframework.version}
        


        
            org.springframework
            spring-orm
            ${springframework.version}
            
                
                    org.springframework
                    spring-jdbc
                
            
        
        
            org.springframework
            spring-tx
            ${springframework.version}
             

        
        
            org.springframework
            spring-test
            ${springframework.version}
            
            test
        

        
            junit
            junit
            4.10
            test
        

        
        
            log4j
            log4j
            ${log4j.version}
        
        
        
            org.apache.cxf
            apache-cxf
            ${cxf.version}
            pom
        

    

   

    其中pluginRepositories和Repositories的区别在于,前者主要提供build和report的构建列表,后者主要提供给dependencies和extensions的构建列表。

你可能感兴趣的:(maven,配置,安装)