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-context-engineering</artifactId> 10 <version>0.9.0</version> 11 <relativePath>../pom.xml</relativePath> 12 </parent> 13 14 <artifactId>driftkit-context-engineering-core</artifactId> 15 16 <name>DriftKit Context Engineering Core</name> 17 <description>Core template and prompt functionality for DriftKit</description> 18 19 <dependencies> 20 <!-- DriftKit Dependencies --> 21 <dependency> 22 <groupId>ai.driftkit</groupId> 23 <artifactId>driftkit-common</artifactId> 24 </dependency> 25 <dependency> 26 <groupId>ai.driftkit</groupId> 27 <artifactId>driftkit-clients-core</artifactId> 28 </dependency> 29 30 <!-- Lombok --> 31 <dependency> 32 <groupId>org.projectlombok</groupId> 33 <artifactId>lombok</artifactId> 34 </dependency> 35 36 <!-- Jackson --> 37 <dependency> 38 <groupId>com.fasterxml.jackson.core</groupId> 39 <artifactId>jackson-databind</artifactId> 40 </dependency> 41 42 <!-- Commons --> 43 <dependency> 44 <groupId>org.apache.commons</groupId> 45 <artifactId>commons-lang3</artifactId> 46 </dependency> 47 <dependency> 48 <groupId>org.apache.commons</groupId> 49 <artifactId>commons-jexl</artifactId> 50 </dependency> 51 <dependency> 52 <groupId>commons-codec</groupId> 53 <artifactId>commons-codec</artifactId> 54 </dependency> 55 56 <!-- Logging --> 57 <dependency> 58 <groupId>org.slf4j</groupId> 59 <artifactId>slf4j-api</artifactId> 60 </dependency> 61 62 <!-- Testing --> 63 <dependency> 64 <groupId>org.junit.jupiter</groupId> 65 <artifactId>junit-jupiter</artifactId> 66 <scope>test</scope> 67 </dependency> 68 <dependency> 69 <groupId>org.mockito</groupId> 70 <artifactId>mockito-core</artifactId> 71 <scope>test</scope> 72 </dependency> 73 <dependency> 74 <groupId>org.mockito</groupId> 75 <artifactId>mockito-junit-jupiter</artifactId> 76 <scope>test</scope> 77 </dependency> 78 </dependencies> 79 80 <build> 81 <plugins> 82 <plugin> 83 <groupId>org.apache.maven.plugins</groupId> 84 <artifactId>maven-resources-plugin</artifactId> 85 <version>3.3.0</version> 86 <configuration> 87 <includeEmptyDirs>true</includeEmptyDirs> 88 </configuration> 89 </plugin> 90 </plugins> 91 </build> 92 </project>