fix plugin portal descriptions
This commit is contained in:
parent
d8f82a8978
commit
5a9bf27829
3 changed files with 12 additions and 12 deletions
|
@ -50,14 +50,14 @@ gradlePlugin {
|
||||||
|
|
||||||
if (project.hasProperty('gradle.publish.key')) {
|
if (project.hasProperty('gradle.publish.key')) {
|
||||||
pluginBundle {
|
pluginBundle {
|
||||||
website = 'https://github.com/jprante/gradle-plugin-docker'
|
website = 'https://github.com/jprante/gradle-plugins'
|
||||||
vcsUrl = 'https://github.com/jprante/gradle-plugin-docker'
|
vcsUrl = 'https://github.com/jprante/gradle-plugins'
|
||||||
plugins {
|
plugins {
|
||||||
dockerPlugin {
|
dockerPlugin {
|
||||||
id = 'org.xbib.gradle.plugin.docker'
|
id = 'org.xbib.gradle.plugin.docker'
|
||||||
version = project.version
|
version = project.version
|
||||||
description = rootProject.ext.description
|
description = 'Docker plugin for build and push by Dockerfile'
|
||||||
displayName = 'Gradle Docker Plugin'
|
displayName = 'Docker Plugin for build and push by Dockerfile'
|
||||||
tags = ['gradle', 'docker']
|
tags = ['gradle', 'docker']
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,14 +41,14 @@ gradlePlugin {
|
||||||
|
|
||||||
if (project.hasProperty('gradle.publish.key')) {
|
if (project.hasProperty('gradle.publish.key')) {
|
||||||
pluginBundle {
|
pluginBundle {
|
||||||
website = 'https://github.com/jprante/groovy-git'
|
website = 'https://github.com/jprante/gradle-plugins'
|
||||||
vcsUrl = 'https://github.com/jprante/groovy-git.git'
|
vcsUrl = 'https://github.com/jprante/gradle-plugins'
|
||||||
plugins {
|
plugins {
|
||||||
gitPlugin {
|
gitPlugin {
|
||||||
id = 'org.xbib.gradle.plugin.git'
|
id = 'org.xbib.gradle.plugin.git'
|
||||||
version = project.version
|
version = project.version
|
||||||
description = rootProject.ext.description
|
description = 'Git client plugin based on JGit'
|
||||||
displayName = rootProject.ext.description
|
displayName = 'Git client plugin based on JGit'
|
||||||
tags = ['gradle', 'plugin', 'git']
|
tags = ['gradle', 'plugin', 'git']
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,14 +40,14 @@ gradlePlugin {
|
||||||
|
|
||||||
if (project.hasProperty('gradle.publish.key')) {
|
if (project.hasProperty('gradle.publish.key')) {
|
||||||
pluginBundle {
|
pluginBundle {
|
||||||
website = 'https://github.com/jprante/rpm'
|
website = 'https://github.com/jprante/gradle-plugins'
|
||||||
vcsUrl = 'https://github.com/jprante/rpm'
|
vcsUrl = 'https://github.com/jprante/gradle-plugins'
|
||||||
plugins {
|
plugins {
|
||||||
rpmPlugin {
|
rpmPlugin {
|
||||||
id = 'org.xbib.gradle.plugin.rpm'
|
id = 'org.xbib.gradle.plugin.rpm'
|
||||||
version = project.version
|
version = project.version
|
||||||
description = rootProject.ext.description
|
description = 'Java implementation for RPM packaging'
|
||||||
displayName = rootProject.ext.description
|
displayName = 'Java implementation for RPM packaging'
|
||||||
tags = ['gradle', 'plugin', 'rpm']
|
tags = ['gradle', 'plugin', 'rpm']
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue