forked from micronaut-projects/micronaut-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
96 lines (79 loc) · 2.57 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
pluginManagement {
plugins {
id 'io.micronaut.build.shared.settings' version '5.3.14'
}
repositories {
gradlePluginPortal()
mavenCentral()
}
}
plugins {
id 'io.micronaut.build.shared.settings'
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositories {
mavenCentral()
}
}
rootProject.name = 'data-parent'
micronautBuild {
importMicronautCatalog()
}
include 'data-bom'
include 'data-model'
include 'data-processor'
include 'data-document-processor'
include 'data-runtime'
include 'data-tx'
include 'data-document-model'
// Test Compatibility Kit
include 'data-tck'
include 'data-document-tck'
// implementations
include 'data-hibernate-jpa'
if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_11)) {
include 'data-hibernate-reactive'
}
include 'data-tx-hibernate'
include 'data-jdbc'
include 'data-r2dbc'
include 'data-mongodb'
// Spring compatibility
include 'data-spring'
include 'data-spring-jpa'
// documentation samples
include 'doc-examples:hibernate-example-java'
include 'doc-examples:hibernate-example-groovy'
include 'doc-examples:hibernate-example-kotlin'
if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_11)) {
include 'doc-examples:hibernate-reactive-example-java'
include 'doc-examples:hibernate-reactive-example-kotlin'
include 'doc-examples:hibernate-reactive-example-groovy'
include 'doc-examples:hibernate-sync-and-reactive-example-java'
}
include 'doc-examples:example-hibernate-and-jdbc'
include 'doc-examples:jdbc-example-java'
include 'doc-examples:jdbc-example-groovy'
include 'doc-examples:jdbc-example-kotlin'
if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_15)) {
include 'doc-examples:jdbc-example-records-java'
}
include 'doc-examples:jdbc-and-r2dbc-example-java'
include 'doc-examples:r2dbc-example-java'
include 'doc-examples:r2dbc-example-groovy'
include 'doc-examples:r2dbc-example-kotlin'
include 'doc-examples:mongo-example-java'
include 'doc-examples:mongo-example-groovy'
include 'doc-examples:mongo-example-kotlin'
include 'doc-examples:mongo-reactive-example-kotlin'
if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_15)) {
include 'doc-examples:mongo-example-records-java'
}
// benchmarks
include 'benchmarks:benchmark-micronaut-data-jpa'
include 'benchmarks:benchmark-micronaut-data-jdbc'
include 'benchmarks:benchmark-micronaut-data-mongodb'
include 'benchmarks:benchmark-spring-data'
include 'benchmarks:benchmark-spring-data-jdbc'
include 'benchmarks:benchmark-spring-data-mongodb'