创建新SpringBoot工程时pom文件内容

1.总pom



    4.0.0

    
    com.example
    demo

    pom
    1.0.0

    
        UTF-8
        11
        11
    

    
    
        gameserver
    

    
    
        
            
                org.apache.maven.plugins
                maven-compiler-plugin
                3.1
                
                    11
                    11
                
            
        
    

2.游戏服pom



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.2.5.RELEASE
        
    

    
    com.example
    gameserver
    0.0.1-SNAPSHOT
    gameserver
    游戏服

    
        UTF-8
        11
        11
        11
    


    
        
            org.springframework.boot
            spring-boot-starter-web
        

        
            org.projectlombok
            lombok
            true
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

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


你可能感兴趣的:(#,springboot,spring,boot)