Merge pull request #1105 from ritschwumm/wip/plugin

make Plugin an abstract class to improve binary compatibility
This commit is contained in:
Naoki Takezoe
2016-04-03 00:43:13 +09:00

View File

@@ -8,9 +8,9 @@ import gitbucket.core.util.Version
/**
* Trait for define plugin interface.
* To provide plugin, put Plugin class which mixed in this trait into the package root.
* To provide a plugin, put a Plugin class which extends this class into the package root.
*/
trait Plugin {
abstract class Plugin {
val pluginId: String
val pluginName: String