maven配置打包环境配置不打包

  • 如题,目前公司在做前后分离开发,打包时需要不包含某些文件

  • 开发使用Spring boot ,前端使用 Vue

  • pom如下

			
                org.apache.maven.plugins
                maven-jar-plugin
                
                    
                        
                        /config/**
                        **/CommonRouteController.class
                    
                
            
  • 打包为ZIP格式
 			
                maven-assembly-plugin
                
                    
                    false
                    
                        src/main/build/package.xml
                    
                
                
                    
                        make-assembly
                        package
                        
                            single
                        
                    
                
            

你可能感兴趣的:(Maven)