-
Notifications
You must be signed in to change notification settings - Fork 34
/
settings.gradle
26 lines (23 loc) · 1.25 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
rootProject.name = 'flowable-bpmn-plugin'
include 'xml-parser-api'
include 'xml-parser-core'
include 'flowable-xml-parser'
include 'activiti-xml-parser'
include 'camunda-xml-parser'
include 'bpmn-intellij-plugin-core'
include 'bpmn-intellij-plugin-common-tests'
include 'bpmn-intellij-plugin-commons'
include 'flowable-intellij-plugin'
include 'activiti-intellij-plugin'
include 'camunda-intellij-plugin'
project(":xml-parser-api").projectDir = file("xml-parser-api")
project(":xml-parser-core").projectDir = file("xml-parser-core")
project(":flowable-xml-parser").projectDir = file("flowable-xml-parser")
project(":activiti-xml-parser").projectDir = file("activiti-xml-parser")
project(":camunda-xml-parser").projectDir = file("camunda-xml-parser")
project(":bpmn-intellij-plugin-core").projectDir = file("bpmn-intellij-plugin-core")
project(":bpmn-intellij-plugin-common-tests").projectDir = file("bpmn-intellij-plugin-common-tests")
project(":bpmn-intellij-plugin-commons").projectDir = file("bpmn-intellij-plugin-commons")
project(":flowable-intellij-plugin").projectDir = file("flowable-intellij-plugin")
project(":activiti-intellij-plugin").projectDir = file("activiti-intellij-plugin")
project(":camunda-intellij-plugin").projectDir = file("camunda-intellij-plugin")