106 lines
3.1 KiB
XML
106 lines
3.1 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-spring-boot-starter</artifactId>
|
|
<name>Clotho Spring Boot Starter</name>
|
|
<description>Spring Boot autoconfiguration and @Transactional bridge for Clotho</description>
|
|
|
|
<dependencies>
|
|
|
|
<!-- Clotho core -->
|
|
<dependency>
|
|
<groupId>com.binarygolem.clotho</groupId>
|
|
<artifactId>clotho-core</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Spring Boot autoconfiguration infrastructure -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Transaction management (arrives transitively but pinned to prevent version drift) -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-tx</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Generates META-INF/spring-configuration-metadata.json for IDE support -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jspecify</groupId>
|
|
<artifactId>jspecify</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Test -->
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- Test: in-memory TinkerGraph — avoids needing a real ArcadeDB in tests -->
|
|
<dependency>
|
|
<groupId>org.apache.tinkerpop</groupId>
|
|
<artifactId>tinkergraph-gremlin</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- Test: ApplicationContextRunner -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-test-autoconfigure</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- Test: AssertJ — required by ApplicationContextRunner -->
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- Test: Mockito for ClothoTransactionManagerTest -->
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|