Maven: resource binary changes file size after build

后端 未结 3 1495
感情败类
感情败类 2020-11-30 06:51

I am using the appengine-maven-plugin to build my Java Google App Engine project.

I include .p12 certificates in a WEB-INF sub-folder

When I build my applica

3条回答
  •  青春惊慌失措
    2020-11-30 07:16

    Another solution is to disable filtering of .p12 files throughout your project by adding the following config:

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

提交回复
热议问题