-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
50 lines (40 loc) · 1.53 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
50 lines (40 loc) · 1.53 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
// Foojay disco-api resolver so Gradle can auto-download a matching JDK when
// the daemon toolchain criteria in gradle/gradle-daemon-jvm.properties can't
// be satisfied from discovered local JDKs. Required by `updateDaemonJvm` in
// Gradle 9.4+, which fails with "Toolchain download repositories have not
// been configured" without a resolver plugin on the settings classpath.
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
rootProject.name = "mcp-steroid"
// On Windows hosts: pre-materialize the bundled 7-Zip Windows binaries before any
// project is configured, so LocalIdeProvisioner's config-phase .exe unpack has the
// extractor on disk via SevenZipLocator's system-property hook. Mac/Linux config
// phases unpack the IDE via .tar.gz / .dmg and never hit the .exe path.
if (System.getProperty("os.name").lowercase().contains("win")) {
apply(from = "gradle/seven-zip-bootstrap.settings.gradle.kts")
}
include(":ai-agents")
include(":agent-output-filter")
include(":closeable-stack")
include(":prompt-generator")
include(":kotlin-cli")
include(":prompts-api")
include(":prompts")
include(":intellij-downloader")
include(":ij-plugin")
include(":mcp-core")
include(":mcp-http")
include(":mcp-stdio")
include(":mcp-steroid-server")
include(":execution-storage")
include(":ocr-common")
include(":ocr-tesseract")
include(":test-helper")
include(":test-integration")
include(":test-experiments")
include(":npx")
include(":npx-kt")
include(":installer-gen")
include(":website-gen")
include(":experiments-report")