-
Notifications
You must be signed in to change notification settings - Fork 182
Expand file tree
/
Copy pathsettings.gradle
More file actions
24 lines (23 loc) · 1.24 KB
/
settings.gradle
File metadata and controls
24 lines (23 loc) · 1.24 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
rootProject.name = 'temporal-java-samples'
include 'core'
include 'springai'
include 'springai-mcp'
include 'springai-multimodel'
include 'springai-rag'
include 'springai-sandboxing'
include 'springboot'
include 'springboot-basic'
// Include local sdk-java build for temporal-spring-ai (until published to Maven Central).
// temporal-spring-ai requires the plugin API (SimplePlugin) which is not yet in a released SDK,
// so we substitute all SDK modules from the local build.
includeBuild('../sdk-java') {
dependencySubstitution {
substitute module('io.temporal:temporal-spring-ai') using project(':temporal-spring-ai')
substitute module('io.temporal:temporal-sdk') using project(':temporal-sdk')
substitute module('io.temporal:temporal-serviceclient') using project(':temporal-serviceclient')
substitute module('io.temporal:temporal-spring-boot-autoconfigure') using project(':temporal-spring-boot-autoconfigure')
substitute module('io.temporal:temporal-spring-boot-starter') using project(':temporal-spring-boot-starter')
substitute module('io.temporal:temporal-testing') using project(':temporal-testing')
substitute module('io.temporal:temporal-opentracing') using project(':temporal-opentracing')
}
}