forked from micronaut-projects/micronaut-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
34 lines (28 loc) · 870 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
24
25
26
27
28
29
30
31
32
33
34
rootProject.name = 'data'
include 'data-bom'
include 'data-model'
include 'data-processor'
include 'data-runtime'
include 'data-tx'
// Test Compatibility Kit
include 'data-tck'
// implementations
include 'data-hibernate-jpa'
include 'data-tx-hibernate'
include 'data-jdbc'
// Spring compatibility
include 'data-spring'
include 'data-spring-jpa'
// documentation samples
include 'doc-examples:example-java'
include 'doc-examples:example-hibernate-and-jdbc'
include 'doc-examples:example-groovy'
include 'doc-examples:example-kotlin'
include 'doc-examples:jdbc-example-java'
include 'doc-examples:jdbc-example-groovy'
include 'doc-examples:jdbc-example-kotlin'
// benchmarks
include 'benchmarks:benchmark-micronaut-data-jpa'
include 'benchmarks:benchmark-micronaut-data-jdbc'
include 'benchmarks:benchmark-spring-data'
include 'benchmarks:benchmark-spring-data-jdbc'