maven打包插件解释


   Spring_boot
   
      
      
         org.apache.maven.plugins
         maven-jar-plugin
         
            
               
                  
                  true
                  
                  lib/
                  
                  Run.RunApplication
               
               
               
                  
                  .
               
            
            
            
               **/*.xml
               **/*.conf
               **/*.sh
            
            
            ${project.build.directory}/${artifactId}
         
      



      
         org.apache.maven.plugins
         maven-surefire-plugin
         
            
            true
         
      


      
         org.apache.maven.plugins
         maven-resources-plugin
         2.7
         
            
               copy-resources
               package
               
                  copy-resources
               
               
                  
                  ${project.build.directory}/${artifactId}
                  
                     
                     
                        src/main/resources/
                        
                        
                           **/*.xml
                           **/*.conf
                           **/*.sh
                        
                     
                  
               
            
         
      

      
         org.apache.maven.plugins
         maven-dependency-plugin
         
            
               copy-dependency
               package
               
                  copy-dependencies
               
               
                  ${project.build.directory}/${artifactId}/lib
                  
                  false
                  
                  false
               
            
         
      


      
         
         
         
         
            
               
                  
                  
                  
                  
                  
                  
               
            
         
         
      
      
      
         net.alchim31.maven
         scala-maven-plugin
         3.2.2
         
            
               scala-compile-first
               
                  compile
               
            
            
               scala-test-compile
               
                  testCompile
               
            
         
         
            
               **/*.xml
               **/*.conf
               **/*.sh
            
         
      
      
  
   

你可能感兴趣的:(maven打包插件解释)