Skip to content

Commit

Permalink
fix(plugin): set tags for Gradle Plugin portal
Browse files Browse the repository at this point in the history
Regression introduced in ed1a43c
  • Loading branch information
grv87 committed Aug 2, 2018
1 parent ed1a43c commit ac94098
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/groovy/org/fidata/gradle/GradlePluginPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,10 @@ final class GradlePluginPlugin extends AbstractPlugin implements PropertyChangeL
project.pluginManager.apply 'com.gradle.plugin-publish'
project.extensions.configure(PluginBundleExtension) { PluginBundleExtension extension ->
extension.with {
description = project.version.toString() == '1.0.0' ? project.description : projectConvention.changeLogTxt.get().toString()
tags = (Collection<String>)projectConvention.tags.get()
website = projectConvention.websiteUrl.get()
vcsUrl = projectConvention.vcsUrl.get()
description = projectConvention.changeLog.get().toString()
}
}
project.tasks.named(/* WORKAROUND: PublishPlugin.BASE_TASK_NAME has private scope <grv87 2018-06-23> */ 'publishPlugins').configure { Task publishPlugins ->
Expand Down

0 comments on commit ac94098

Please sign in to comment.