/ driftkit-clients / pom.xml
pom.xml
1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 5 <modelVersion>4.0.0</modelVersion> 6 7 <parent> 8 <groupId>ai.driftkit</groupId> 9 <artifactId>driftkit-parent</artifactId> 10 <version>0.9.0</version> 11 <relativePath>../pom.xml</relativePath> 12 </parent> 13 14 <artifactId>driftkit-clients</artifactId> 15 <packaging>pom</packaging> 16 17 <name>DriftKit Clients</name> 18 <description>Client implementations for various language models</description> 19 20 <modules> 21 <module>driftkit-clients-core</module> 22 <module>driftkit-clients-spring-boot-starter</module> 23 <module>driftkit-clients-openai</module> 24 <module>driftkit-clients-gemini</module> 25 <module>driftkit-clients-claude</module> 26 <module>driftkit-clients-deepseek</module> 27 <module>driftkit-clients-spring-ai</module> 28 <module>driftkit-clients-spring-ai-starter</module> 29 </modules> 30 </project>