Maven多模块下pom依赖关系解读

 Maven采取多模块进行开发,父子模块的传递关系,及各个参数的说明

包括:

1 父子模块的传递

2 依赖关系 版本管理

3 各个属性的说明

建议不用过分强调父模块、子模块,只是取名子。父模块可以是子模块,子模块可以是父模块。都一样,只是里面的参数设置不同罢了,如果仔细写Pom,相同也没啥。



    4.0.0

    
    
    bob.spring
    
    spring-boot-cloud
    
    1.0-SNAPSHOT
    
    pom
    
    ${project.artifactId}

    
    
        org.springframework.boot
        spring-boot-starter-parent
        1.5.6.RELEASE
    

    
    
    
        config
        serviceB
        serviceA
    

    
    
        UTF-8
        1.8
        1.0.0
        spring-boot-cloud
        Dalston.SR4
        1.5.4
    

    
    

    
    
    
    
        
            org.springframework.boot
            spring-boot-starter-actuator
            
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

    
    
    
    
        
            
                de.codecentric
                spring-boot-admin-server
                ${spring-boot-admin.version}
            
            
                de.codecentric
                spring-boot-admin-server-ui
                ${spring-boot-admin.version}
            
        
    

    
    
        
            
                
                    org.springframework.boot
                    spring-boot-maven-plugin
                    
                        
                            
                                repackage
                            
                        
                    
                

            
        
    

参考链接

maven pom

maven pom another

你可能感兴趣的:(maven,Java,编程基础,spring,boot,spring,java)