clotho/clotho-core/pom.xml
2026-05-15 00:09:01 +02:00

62 lines
1.8 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.binarygolem.clotho</groupId>
<artifactId>clotho-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
</parent>
<artifactId>clotho-core</artifactId>
<name>Clotho Core</name>
<description>Core OGM logic — zero Spring dependency</description>
<dependencies>
<!-- TinkerPop remote Gremlin client -->
<dependency>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>gremlin-driver</artifactId>
</dependency>
<!-- Classpath scanning for TypeRegistry -->
<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
</dependency>
<!-- Lombok (annotation processor only — not included in output jar) -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<!-- Null annotations (compile + runtime for reflection-based checks) -->
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
</dependency>
<!-- Test: JUnit 5 -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<!-- Test: TinkerGraph — in-memory TinkerPop graph for unit tests (no real DB needed) -->
<dependency>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkergraph-gremlin</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>