Skip to content

Commit 7aba40c

Browse files
committed
Update template
1 parent 98b75f2 commit 7aba40c

File tree

25 files changed

+18
-23
lines changed

25 files changed

+18
-23
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"java.configuration.updateBuildConfiguration": "interactive"
3+
}
File renamed without changes.

demo-catalog/templates/spring-boot-ai-rag/base/build.gradle renamed to demo-catalog/templates/spring-boot-ai-service/base/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.4.0-M3'
3+
id 'org.springframework.boot' version '3.4.0-RC1'
44
id 'io.spring.dependency-management' version '1.1.6'
5+
id 'org.graalvm.buildtools.native' version '0.10.3'
56
id 'org.cyclonedx.bom' version '1.10.0'
67
id 'org.sonarqube' version '5.1.0.4882'
78
}
@@ -34,6 +35,8 @@ dependencies {
3435
implementation 'org.springframework.boot:spring-boot-starter-actuator'
3536
implementation 'org.springframework.boot:spring-boot-starter-web'
3637

38+
implementation 'org.springframework.ai:spring-ai-markdown-document-reader'
39+
3740
implementation 'io.micrometer:micrometer-tracing-bridge-otel'
3841
implementation 'io.opentelemetry:opentelemetry-exporter-otlp'
3942
implementation 'io.micrometer:micrometer-registry-otlp'
@@ -55,6 +58,7 @@ dependencies {
5558
{%- endif %}
5659
{% if values.vectorStore == "postgresql" %}
5760
implementation 'org.springframework.ai:spring-ai-pgvector-store-spring-boot-starter'
61+
implementation 'net.ttddyy.observation:datasource-micrometer-spring-boot:1.0.5'
5862
testImplementation 'org.testcontainers:postgresql'
5963
{%- endif %}
6064
{% if values.vectorStore == "weaviate" %}

0 commit comments

Comments
 (0)