-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
50 lines (46 loc) · 1.59 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
50 lines (46 loc) · 1.59 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
rootProject.name = "vitre"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
dependencyResolutionManagement {
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
// JOGL, which JCEF — and so KCEF, and so the desktop target — depends on at runtime for
// its offscreen renderer. It is not on Maven Central and never has been, so without this
// the desktop app compiles and then fails to resolve its own runtime classpath. Narrowed to
// the one group for the same reason `google()` above is: an unscoped extra repository is
// somewhere else every dependency in the build can silently come from.
maven("https://jogamp.org/deployment/maven") {
mavenContent { includeGroupAndSubgroups("org.jogamp") }
}
}
}
include(":vitre-core")
include(":vitre-agent")
include(":vitre-compose")
include(":vitre-mcp")
include(":vitre-koog")
include(":sample:composeApp")
include(":sample:androidApp")
include(":sample:desktopApp")