forked from hyphanet/fred
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
61 lines (56 loc) · 1.36 KB
/
settings.gradle.kts
File metadata and controls
61 lines (56 loc) · 1.36 KB
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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}
}
// Configure repositories for Java toolchain auto-provisioning (fixes Gradle 10 deprecation)
plugins { id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0" }
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
repositories {
mavenCentral {
metadataSources {
mavenPom()
artifact()
ignoreGradleMetadataRedirection()
}
}
}
}
rootProject.name = "cryptad"
include(
":apps:queue-manager",
":apps:publisher",
":platform-appdist",
":platform-app-ui",
":platform-appcatalog",
":foundation-support",
":foundation-store",
":foundation-store-contracts",
":foundation-crypto-keys",
":interop-wire",
":foundation-config",
":foundation-fs",
":foundation-compat",
":kernel-content",
":kernel-transport",
":kernel-routing",
":runtime-spi",
":platform-api",
":platform-apphost",
":platform-sdk-js",
":platform-web-shell",
":runtime-alerts",
":runtime-node",
":adapter-fcp",
":bridge-fcp-runtime",
":bridge-http-runtime",
":adapter-http-legacy-admin",
":adapter-http-legacy-browse",
":thirdparty-onion",
":thirdparty-legacy",
":launcher-desktop",
)
// Gradle 9: Use an included build for convention plugins instead of buildSrc
includeBuild("build-logic")