-
Notifications
You must be signed in to change notification settings - Fork 26
/
settings.gradle
48 lines (41 loc) · 1.39 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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}
}
plugins {
id 'io.micronaut.build.shared.settings' version '7.2.3'
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = 'kubernetes-parent'
include 'kubernetes-bom'
include 'kubernetes-client'
include 'kubernetes-client-openapi'
include 'kubernetes-client-openapi-common'
include 'kubernetes-client-openapi-reactor'
include 'kubernetes-client-processor'
include 'kubernetes-client-reactor'
include 'kubernetes-client-rxjava2'
include 'kubernetes-client-rxjava3'
include 'kubernetes-discovery-client'
include 'kubernetes-informer'
include 'kubernetes-operator'
include 'test-utils'
include 'examples:example-client'
include 'examples:example-kubernetes-client'
include 'examples:example-kubernetes-client-openapi-java'
include 'examples:example-kubernetes-client-openapi-reactor-java'
include 'examples:example-kubernetes-informer'
include 'examples:example-kubernetes-operator'
include 'examples:example-service'
micronautBuild {
useStandardizedProjectNames = true
nonStandardProjectNamePrefixes.add("test-utils")
nonStandardProjectNamePrefixes.add("examples")
importMicronautCatalog()
importMicronautCatalog("micronaut-reactor")
importMicronautCatalog("micronaut-serde")
importMicronautCatalog("micronaut-validation")
importMicronautCatalog("micronaut-openapi")
}