Remove extra information from plugins.json

This commit is contained in:
Naoki Takezoe
2017-07-09 02:31:13 +09:00
parent 74063885b1
commit 947d93ddc7
2 changed files with 0 additions and 8 deletions

View File

@@ -3,8 +3,6 @@
"id": "notifications",
"name": "Notifications Plugin",
"description": "Provides Notifications feature on GitBucket.",
"provider": "GitBucket Organization",
"homepage": "https://github.com/gitbucket/gitbucket-notifications-plugin",
"versions": [
{
"version": "1.0.0",
@@ -18,8 +16,6 @@
"id": "emoji",
"name": "Emoji Plugin",
"description": "Provides Emoji support for GitBucket.",
"provider": "GitBucket Organization",
"homepage": "https://github.com/gitbucket/gitbucket-emoji-plugin",
"versions": [
{
"version": "4.4.0",
@@ -33,8 +29,6 @@
"id": "gist",
"name": "Gist Plugin",
"description": "Provides Gist feature on GitBucket.",
"provider": "GitBucket Organization",
"homepage": "https://github.com/gitbucket/gitbucket-gist-plugin",
"versions": [
{
"version": "4.9.0",

View File

@@ -27,8 +27,6 @@ case class PluginMetadata(
id: String,
name: String,
description: String,
provider: String,
homepage: String,
versions: Seq[VersionDef],
default: Boolean = false
){