Sonar拡張機能は、基盤となるantタスクを使用し、ビルダーからantにパラメーターを渡します。使用できるパラメーターは、Buildrの次のリリースで文書化される予定です。ただし、ここで開始するのは、すべての構成パラメーターを使用する簡単な例です。設定する必要がある唯一のプロパティは「有効」ですが、残りは適切なデフォルトを設定しようとします。
require 'buildr/sonar'
define "foo" do
project.version = "1.0.0"
define "bar" do ... end
sonar.enabled = true
sonar.project_name = 'Foo-Project'
sonar.key = 'foo:project'
sonar.jdbc_url = 'jdbc:jtds:sqlserver://example.org/SONAR;instance=MyInstance;SelectMethod=Cursor'
sonar.jdbc_driver_class_name = 'net.sourceforge.jtds.jdbc.Driver'
sonar.jdbc_username = 'sonar'
sonar.jdbc_password = 'secret'
sonar.host_url = 'http://127.0.0.1:9000'
sonar.sources << project('foo:bar')._(:source, :main, :java)
sonar.binaries << project('foo:bar').compile.target
sonar.libraries << project('foo:bar').compile.dependencies
end