6- Maven配置文件pom.xml

pom.xml

pom的全称是Project Object Model,主要描述了项目:包括配置文件;开发者需要遵循的规则,缺陷管理系统,组织和licenses,项目的url,项目的依赖性,以及其他所有的项目相关因素。


    4.0.0
    bank
    spring-mvc-web
    0.0.1-SNAPSHOT
    war

    
    
        
            zhouyang
            null
            
                developer
                manager
            
            [email protected]
        
    

    
    
        UTF-8
        4.3.8.RELEASE
        1.8
    

    
        
        
            org.springframework
            spring-webmvc
            4.3.8.RELEASE
        
        
            taglibs
            standard
            1.1.2
        
        
            junit
            junit
            3.8.1
            test
        
    
    
        src
        
            
                maven-compiler-plugin
                3.5.1
                
                
                    1.8
                    1.8
                
            
            
                maven-war-plugin
                3.0.0
                
                    WebContent
                
            
        
    




这个是maven里比较常用的一些配置。下面对里面的部分配置做简单的解释

你可能感兴趣的:(6- Maven配置文件pom.xml)