1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <!--
3+ ~ Copyright 2023-2025 the original author or authors.
4+ ~
5+ ~ Licensed under the Apache License, Version 2.0 (the "License");
6+ ~ you may not use this file except in compliance with the License.
7+ ~ You may obtain a copy of the License at
8+ ~
9+ ~ https://www.apache.org/licenses/LICENSE-2.0
10+ ~
11+ ~ Unless required by applicable law or agreed to in writing, software
12+ ~ distributed under the License is distributed on an "AS IS" BASIS,
13+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ ~ See the License for the specific language governing permissions and
15+ ~ limitations under the License.
16+ -->
17+
18+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
19+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
20+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
21+ <modelVersion >4.0.0</modelVersion >
22+ <parent >
23+ <groupId >org.springframework.ai</groupId >
24+ <artifactId >spring-ai-parent</artifactId >
25+ <version >1.0.0-SNAPSHOT</version >
26+ </parent >
27+ <artifactId >spring-ai-template-st</artifactId >
28+ <packaging >jar</packaging >
29+ <name >Spring AI Template StringTemplate</name >
30+ <description >StringTemplate implementation for Spring AI templating</description >
31+ <url >https://github.com/spring-projects/spring-ai</url >
32+
33+ <scm >
34+ <url >https://github.com/spring-projects/spring-ai</url >
35+ <connection >git://github.com/spring-projects/spring-ai.git</connection >
36+ <
developerConnection >
[email protected] :spring-projects/spring-ai.git</
developerConnection >
37+ </scm >
38+
39+ <properties >
40+ <maven .compiler.target>17</maven .compiler.target>
41+ <maven .compiler.source>17</maven .compiler.source>
42+ </properties >
43+
44+ <dependencies >
45+ <dependency >
46+ <groupId >org.springframework.ai</groupId >
47+ <artifactId >spring-ai-commons</artifactId >
48+ <version >${project.parent.version} </version >
49+ </dependency >
50+
51+ <dependency >
52+ <groupId >org.antlr</groupId >
53+ <artifactId >ST4</artifactId >
54+ <version >${ST4.version} </version >
55+ </dependency >
56+
57+ <!-- ANTLR for token parsing -->
58+ <dependency >
59+ <groupId >org.antlr</groupId >
60+ <artifactId >antlr4-runtime</artifactId >
61+ <version >${antlr.version} </version >
62+ </dependency >
63+
64+ <!-- Logging -->
65+ <dependency >
66+ <groupId >org.slf4j</groupId >
67+ <artifactId >slf4j-api</artifactId >
68+ </dependency >
69+
70+ <!-- test dependencies -->
71+ <dependency >
72+ <groupId >org.springframework.boot</groupId >
73+ <artifactId >spring-boot-starter-test</artifactId >
74+ <scope >test</scope >
75+ </dependency >
76+ </dependencies >
77+ </project >
0 commit comments