Invalid signature file digest for Manifest main attributes exception while trying to run jar file

前端 未结 6 596
-上瘾入骨i
-上瘾入骨i 2020-12-01 07:07

I am trying to run the jar file of my project. I am working on intelliJ and have use artifacts to generate the jar file. But everytime i am trying to run my jar file its giv

6条回答
  •  [愿得一人]
    2020-12-01 07:45

    In the compiled jar need to delete the security signed files. To do this follow this command

    zip -d jarfile.jar 'META-INF/.SF' 'META-INF/.RSA' 'META-INF/*SF'

提交回复
热议问题