* What went wrong:
Execution failed for task ':publishPlugins'.
> Failed to post to server.
Server responded with:
The user 'nebula' does not have write permissions to: nebula.plugin-plugin'
I’m trying to publish a plugin with a name change. Have it configured in my plugins block:
pluginBundle {
website = 'https://github.com/nebula-plugins/nebula-publishing-plugin' // this is what it was on failure, just sent commit to fix it, hopefully not the reason my role account didn't have write permission
vcsUrl = 'https://github.com/nebula-plugins/nebula-publishing-plugin.git'
plugins {
pluginplugin {
id = 'nebula.plugin-plugin'
displayName = 'Nebula Plugin Plugin'
description = 'Sets up publishing and release process for all of the other nebula plugins'
tags = ['nebula', 'plugin']
}
}
mavenCoordinates {
groupId = 'com.netflix.nebula'
artifactId = 'nebula-plugin-plugin'
}
}