commit | 50bfa501b1673269a93815bd6c802f42e407eb23 | [log] [tgz] |
---|---|---|
author | Paladox none <thomasmulhall410@yahoo.com> | Mon Feb 13 13:50:54 2017 +0000 |
committer | Paladox none <thomasmulhall410@yahoo.com> | Mon Feb 13 13:51:00 2017 +0000 |
tree | a7268193c3479b63313b67f3d832a54d5b0f9ff4 | |
parent | f39e2d4dcd7e3f3ceb532731c9c98eda4728f736 [diff] |
Remove buck build Change-Id: Ic3179baa24068cf6b24fabe012277d7ef6667a6d
This plugin provides Scala runtime environment for Gerrit plugins in Scala.
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”.