JetBrains / marketplace-zip-signer

Marketplace ZIP Signer tool handles signing and verification of the JetBrains plugins.
Apache License 2.0
17 stars 14 forks source link

Cannot resolve the latest Marketplace ZIP Signer CLI version #212

Open zxy-c opened 9 months ago

zxy-c commented 9 months ago

When run "publishPlugin" Execution failed for task ':downloadZipSigner'.

Error while evaluating property 'cliPath' of task ':downloadZipSigner'. Failed to calculate the value of task ':downloadZipSigner' property 'cliPath'. Cannot resolve the latest Marketplace ZIP Signer CLI version

aixcyi commented 3 months ago

This is a feasible solution for me:

  1. Download jar package marketplace-zip-signer manually.
  2. Add tasks.downloadZipSigner into build.gradle.kts and set cliPath value as package absolute path.
tasks {
    downloadZipSigner {
        cliPath = "C:\\ProjectSpace\\MyPlugin\\marketplace-zip-signer-cli.jar"
    }
}