Maven - how to include empty directories

后端 未结 5 1292
灰色年华
灰色年华 2020-11-30 07:25

By default during the build process maven is removing the empty directories.
Do you know if a parameter can be specified in the pom to instruct maven to include empty di

5条回答
  •  死守一世寂寞
    2020-11-30 07:55

    If it's not working for you can use Maven Resources Plugin 2.7.

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

提交回复
热议问题