“Invalid signature file” when attempting to run a .jar

后端 未结 21 2348
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-22 05:34

My java program is packaged in a jar file and makes use of an external jar library, bouncy castle. My code compiles fine, but running the jar leads to the following error:

21条回答
  •  情书的邮戳
    2020-11-22 06:22

    I faced the same issue, after reference somewhere, it worked as below changing:

    
        org.apache.maven.plugins
        maven-shade-plugin
        3.2.1
        
            false
        
        
            
                package
                
                    shade
                
                
                    
                        
                            *:*
                            
                                META-INF/*.SF
                                META-INF/*.DSA
                                META-INF/*.RSA
                            
                        
                    
                
            
        
    
    

提交回复
热议问题