maven将项目及第三方jar打成一个jar包

pom.xml中添加如下配置

把依赖包和自己项目的文件打包如同一个jar包(这种方式对spring的项目不支持)

   
        
            
              maven-assembly-plugin  
                
                    
                        
                          com.tang.CSVUtils  
                        
                    
                    
                        
                          jar-with-dependencies  
                        
                    
                
                
                
            
        
    

 

你可能感兴趣的:(maven将项目及第三方jar打成一个jar包)