forked from micronaut-projects/micronaut-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
79 lines (69 loc) · 2.11 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
pluginManagement {
plugins {
id 'io.micronaut.build.shared.settings' version getProperty("micronautSharedSettingVersion")
}
repositories {
gradlePluginPortal()
mavenCentral()
}
}
plugins {
id 'io.micronaut.build.shared.settings'
}
enableFeaturePreview("VERSION_CATALOGS")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositories {
mavenCentral()
}
versionCatalogs {
"mn" {
from("io.micronaut:micronaut-bom:${providers.gradleProperty("micronautVersion").get()}")
}
}
}
rootProject.name = 'data'
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'
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: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'
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:jdbc-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'