-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
60 lines (52 loc) · 1.96 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
60 lines (52 loc) · 1.96 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
@file:Suppress("UnstableApiUsage")
pluginManagement {
includeBuild("build-logic")
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
id("com.gradle.develocity") version "4.5.0"
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.8.0"
}
// Build Scans + remote Build Cache (Develocity OSS Community instance)
apply(from = "gradle/develocity.settings.gradle")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven("https://central.sonatype.com/repository/maven-snapshots/") {
mavenContent { snapshotsOnly() }
}
}
}
rootProject.name = "meshtastic-sdk"
// Phase 1 bootstrap: keep focused module set while enabling convention plugins.
include(":core")
include(":testing")
// Phase 2: TCP transport, SQLDelight storage, and CLI sample.
include(":transport-tcp")
include(":storage-sqldelight")
include(":samples:cli")
// Sprint 6: Compose Multiplatform parity sample (Android + iOS + JVM desktop) over TCP.
include(":samples:parity-app")
include(":samples:parity-android-app")
// Phase 3: BLE transport.
include(":transport-ble")
// Phase 4: USB / native serial transport (jvm + android via jSerialComm).
include(":transport-serial")
// Bill-of-Materials: pins all radio-client-* artifacts to one version.
include(":bom")
// --- Roadmap modules (not MVP — uncomment when promoted) ---
// include(":transport-mqtt-proxy") // Phase 6
// include(":transport-rpc") // post-1.0
// include(":transport-http") // post-1.0
// include(":host-rpc-server") // post-1.0
// include(":rpc") // post-1.0
// include(":storage-okio-files") // post-1.0
// include(":samples:wasm-app") // when wasm tooling matures
// include(":samples:host-rpc-server") // post-1.0