mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
18 lines
728 B
Groovy
18 lines
728 B
Groovy
// The project is named 'corda-project' and not 'corda' because if this is named the same as the
|
|
// output JAR from the capsule then the buildCordaJAR task goes into an infinite loop.
|
|
rootProject.name = 'corda-project'
|
|
include 'finance'
|
|
include 'finance:isolated'
|
|
include 'core'
|
|
include 'node'
|
|
include 'client'
|
|
include 'experimental'
|
|
include 'test-utils'
|
|
include 'tools:explorer'
|
|
include 'tools:loadtest'
|
|
include 'docs/source/example-code' // Note that we are deliberately choosing to use '/' here. With ':' gradle would treat the directories as actual projects.
|
|
include 'samples:attachment-demo'
|
|
include 'samples:trader-demo'
|
|
include 'samples:irs-demo'
|
|
include 'samples:network-visualiser'
|
|
include 'samples:simm-valuation-demo' |