hi, has anyone successfully published multiplatfor...
# multiplatform
t
hi, has anyone successfully published multiplatform library to Artifact Registry? I'm getting
Copy code
Execution failed for task ':publishJvmPublicationToMavenRepository'.
> Failed to publish publication 'jvm' to repository 'maven'
   > Could not write to resource '<https://europe-central2-maven.pkg.dev/...>'.
      > Connection reset by peer: socket write error
for
Copy code
publishing{    
    repositories {
            maven {
                url = uri("<https://europe-central2-maven.pkg.dev/>...")
                credentials {
                    username = "_json_key_base64"
                    password = artifactRegistryMavenSecret
                }
                authentication {
                    create<BasicAuthentication>("basic")
                }
            }
        }
    }
nvm. I had my key incorrectly quoted in gradle.properties 🙂 Nothing to do with multiplatform