commit | 72a204dd63d007578ad8944bafbb773bbc19d474 | [log] [tgz] |
---|---|---|
author | Luca Milanesio <luca.milanesio@gmail.com> | Wed Apr 23 01:14:01 2014 +0100 |
committer | Luca Milanesio <luca.milanesio@gmail.com> | Wed Apr 23 01:14:01 2014 +0100 |
tree | a702d8837aed2c2029098ef89e341a6130e6e03f | |
parent | 1a83ae5cf2aa0ef651b89f2c7f1cfad8132ce27b [diff] |
Simplified plugin scanner using a base AbstractPreloaded scanner Use the new Gerrit AbstractPreloadedPluginScanner to simplify the auto-generation of Plugin manifest and auto-discover of annotated classes. Change-Id: I2f34869111be5aef5bff99298b38c1bec2f60d4a
This plugin provides Scala runtime environment for Gerrit plugins in Scala.
To test this series must be applied on top of Gerrit master [1].
To build link this directory under Gerrit's tree plugins directory and run:
buck build plugins/scala-provider:scala-provider
The resulting artifact can be found under:
buck-out/gen/plugins/scala-provider/scala-provider.jar
A sample Scala hello world script is:
import com.google.gerrit.sshd._ import com.google.gerrit.extensions.annotations._ @Export("scala") class ScalaCommand extends SshCommand { override def run = stdout println "Hello from Scala!" }
Copy and past the above sample Scala fragment into the file $GERRIT_SITE/plugin/hello-1.0.scala.
The “hello” plugin version 1.0 will be automatically loaded into Gerrit and will provide a new SSH command “hello scala”.