maven-dependency-plugin (goals "copy-dependencies", "unpack") is not supported

阅读更多
POM文件报错maven-dependency-plugin (goals "copy-dependencies", "unpack") is not supported by m2e.,
在标签前添加如下内容

        
        
        
            org.eclipse.m2e
            lifecycle-mapping
            1.0.0
            
                
                    
                        
                        
                            
                                org.apache.maven.plugins
                                maven-dependency-plugin
                                [1.0.0,)
                                
                                    copy-dependencies
                                
                            
                            
                                
                            
                        
                    
                
            
        
       
       


maven2.0以上版本加入如下


			
				
					org.eclipse.m2e
					lifecycle-mapping
					1.0.0
					
						
							
								
									
										org.apache.maven.plugins
										maven-dependency-plugin
										[2.0,)
										
											copy-dependencies
											unpack
										
									
									
										
									
								
							
						
					
				
			
		

你可能感兴趣的:(maven,plugin,dependency)