forked from Netflix/genie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
28 lines (26 loc) · 1.13 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
rootProject.name = "genie"
include "genie-test",
"genie-test-web",
"genie-common",
"genie-common-internal",
"genie-common-external",
"genie-proto",
"genie-ui",
"genie-web",
"genie-security",
"genie-app",
"genie-war",
"genie-client",
"genie-agent",
"genie-agent-app",
"genie-demo",
"genie-docs"
/*
As part of making the publishing plugins stable, the 'deferred configurable' behavior of the 'publishing {}' block
has been deprecated. In Gradle 5.0 the 'enableFeaturePreview('STABLE_PUBLISHING')' flag will be removed and the new
behavior will become the default. Please add 'enableFeaturePreview('STABLE_PUBLISHING')' to your settings file and
do a test run by publishing to a local repository. If all artifacts are published as expected, there is nothing else
to do. If the published artifacts change unexpectedly, please see the migration guide for more details:
https://docs.gradle.org/4.10.2/userguide/publishing_maven.html#publishing_maven:deferred_configuration.
*/
enableFeaturePreview("STABLE_PUBLISHING")