mirror of
https://github.com/corda/corda.git
synced 2024-12-24 15:16:45 +00:00
17 lines
507 B
ReStructuredText
17 lines
507 B
ReStructuredText
Quasar Utils
|
|
============
|
|
|
|
Quasar utilities adds several tasks and configuration that provide a default Quasar setup and removes some boilerplate.
|
|
One line must be added to your build.gradle once you apply this plugin:
|
|
|
|
.. code-block:: text
|
|
|
|
quasarScan.dependsOn('classes')
|
|
|
|
If any sub-projects are added that this project depends on then add the gradle target for that project to the depends
|
|
on statement. eg:
|
|
|
|
.. code-block:: text
|
|
|
|
quasarScan.dependsOn('classes', 'subproject:subsubproject', ...)
|