Maven resource filtering for single file

前端 未结 3 674
逝去的感伤
逝去的感伤 2020-12-30 22:34

In pom.xml I have defined :


    org.apache.maven.plugins
    maven-resources-plugin         


        
3条回答
  •  萌比男神i
    2020-12-30 23:19

    For the resource tag you can used includes and excludes. Just define simply a mask, which fits your single file only. See http://maven.apache.org/plugins/maven-resources-plugin/examples/filter.html

    Sample:

    
      ...
      
        ...
        
          
            src/main/resources
            true
            
              **/yoursinglefile.xml
            
          
          ...
        
        ...
      
      ...
    
    

提交回复
热议问题