forked from grails/gorm-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
23 lines (16 loc) · 916 Bytes
/
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
include 'core'
include 'plugin'
include 'docs'
include 'examples-grails-test-app'
project(":examples-grails-test-app").projectDir = new File(settingsDir, "examples/grails-test-app")
include 'examples-grails-docs-app'
project(":examples-grails-docs-app").projectDir = new File(settingsDir, "examples/grails-docs-app")
include 'examples-grails-tenant-app'
project(":examples-grails-tenant-app").projectDir = new File(settingsDir, "examples/grails-tenant-app")
include 'examples-grails-multi-datastore-app'
project(":examples-grails-multi-datastore-app").projectDir = new File(settingsDir, "examples/grails-multi-datastore-app")
include 'examples-spring-boot-app'
project(":examples-spring-boot-app").projectDir = new File(settingsDir, "examples/spring-boot-app")
rootProject.name = 'gorm-graphql-root'
findProject(':core').name = 'gorm-graphql'
findProject(':plugin').name = 'grails-plugin-gorm-graphql-plugin'