1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3+ <modelVersion >4.0.0</modelVersion >
4+ <artifactId >astra-db-client</artifactId >
5+ <name >Java Client for Astra DB</name >
6+
7+ <parent >
8+ <groupId >com.datastax.astra</groupId >
9+ <artifactId >astra-sdk-parent</artifactId >
10+ <version >1.2.5-SNAPSHOT</version >
11+ </parent >
12+
13+ <properties >
14+ <openai-java .version>0.18.2</openai-java .version>
15+ <langchain4j .version>0.25.0</langchain4j .version>
16+ <okhttp .version>4.12.0</okhttp .version>
17+ <okio-jvm .version>3.7.0</okio-jvm .version>
18+ </properties >
19+
20+ <dependencies >
21+
22+ <dependency >
23+ <groupId >org.slf4j</groupId >
24+ <artifactId >slf4j-api</artifactId >
25+ </dependency >
26+
27+ <dependency >
28+ <groupId >com.squareup.okhttp3</groupId >
29+ <artifactId >okhttp</artifactId >
30+ <version >${okhttp.version}</version >
31+ </dependency >
32+
33+ <dependency >
34+ <groupId >com.squareup.okio</groupId >
35+ <artifactId >okio-jvm</artifactId >
36+ <version >${okio-jvm.version}</version >
37+ </dependency >
38+
39+ <dependency >
40+ <groupId >org.projectlombok</groupId >
41+ <artifactId >lombok</artifactId >
42+ </dependency >
43+
44+ <!-- DATA API -->
45+ <dependency >
46+ <groupId >com.datastax.stargate</groupId >
47+ <artifactId >stargate-sdk-data</artifactId >
48+ </dependency >
49+
50+ <!-- CQL API (CassioIO) -->
51+ <dependency >
52+ <groupId >com.datastax.oss</groupId >
53+ <artifactId >java-driver-core</artifactId >
54+ </dependency >
55+
56+ <!-- DEVOPS AI -->
57+ <dependency >
58+ <groupId >com.datastax.astra</groupId >
59+ <artifactId >astra-sdk-devops</artifactId >
60+ <version >${project.version}</version >
61+ </dependency >
62+
63+ <!-- TEST -->
64+ <dependency >
65+ <groupId >org.junit.jupiter</groupId >
66+ <artifactId >junit-jupiter-engine</artifactId >
67+ <scope >test</scope >
68+ </dependency >
69+ <dependency >
70+ <groupId >ch.qos.logback</groupId >
71+ <artifactId >logback-classic</artifactId >
72+ <scope >test</scope >
73+ </dependency >
74+
75+ <dependency >
76+ <groupId >com.theokanning.openai-gpt3-java</groupId >
77+ <artifactId >service</artifactId >
78+ <version >${openai-java.version}</version >
79+ <scope >test</scope >
80+ </dependency >
81+ <dependency >
82+ <groupId >dev.langchain4j</groupId >
83+ <artifactId >langchain4j-open-ai</artifactId >
84+ <version >${langchain4j.version}</version >
85+ <scope >test</scope >
86+ </dependency >
87+
88+ </dependencies >
89+
90+ <build >
91+ <plugins >
92+ <plugin >
93+ <groupId >org.apache.maven.plugins</groupId >
94+ <artifactId >maven-compiler-plugin</artifactId >
95+ <configuration >
96+ <source >11</source >
97+ <target >11</target >
98+ </configuration >
99+ </plugin >
100+ </plugins >
101+ </build >
102+
103+ <licenses >
104+ <license >
105+ <name >Apache-2.0</name >
106+ <url >https://www.apache.org/licenses/LICENSE-2.0.txt</url >
107+ <distribution >repo</distribution >
108+ <comments >A business-friendly OSS license</comments >
109+ </license >
110+ </licenses >
111+
112+ </project >
0 commit comments