forked from grails/gorm-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
32 lines (21 loc) · 1.06 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
26
27
28
29
// core
include "grails-datastore-gorm-bson"
include "grails-datastore-gorm-mongodb"
include "grails-datastore-gorm-mongodb-ext"
// documentation
include 'docs'
// plugins
include "boot-plugin"
project(':boot-plugin').name = 'gorm-mongodb-spring-boot'
include 'grails-plugin'
// examples
include 'examples-grails3-mongodb'
project(":examples-grails3-mongodb").projectDir = new File(settingsDir, "examples/grails3-mongodb")
include 'examples-grails3-mongodb-database-per-tenant'
project(":examples-grails3-mongodb-database-per-tenant").projectDir = new File(settingsDir, "examples/grails3-mongodb-database-per-tenant")
include 'examples-grails3-hibernate5-mongodb'
project(":examples-grails3-hibernate5-mongodb").projectDir = new File(settingsDir, "examples/grails3-hibernate5-mongodb")
include 'examples-springboot-mongodb'
project(":examples-springboot-mongodb").projectDir = new File(settingsDir, "examples/springboot-mongodb")
include 'examples-test-data-service'
project(":examples-test-data-service").projectDir = new File(settingsDir, "examples/test-data-service")