plan-assertions
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>li.selman</groupId>
<artifactId>plan-assertions</artifactId>
<version>0.1.0</version>
</dependency><?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>li.selman</groupId>
<artifactId>persistence-test</artifactId>
<version>0.1.0</version>
</parent>
<artifactId>plan-assertions</artifactId>
<packaging>jar</packaging>
<name>plan-assertions</name>
<description>Execution-plan assertions backed by a database SPI, implemented first for PostgreSQL via
EXPLAIN (ANALYZE, BUFFERS, FORMAT JSON) run inside a rolled-back transaction (ANALYZE executes the
statement, including any side-effecting DML). Derives stable facts (usesIndex, avoidsSequentialScan,
estimatedRowsLessThan, ...) from the plan rather than ever comparing raw plan text.</description>
<url>https://github.com/haisi/persistence-test</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>haisi</id>
<name>Hasan Selman Kara</name>
<email>hasan.selman.kara@gmail.com</email>
<url>https://github.com/haisi</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/haisi/persistence-test.git</connection>
<developerConnection>scm:git:ssh://git@github.com/haisi/persistence-test.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/haisi/persistence-test</url>
</scm>
<properties>
<org-json.version>20260719</org-json.version>
<postgresql.version>42.7.13</postgresql.version>
<testcontainers.version>1.21.4</testcontainers.version>
</properties>
<dependencies>
<dependency>
<groupId>li.selman</groupId>
<artifactId>persistence-test-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<!-- compile scope (not the parent's test-scope aggregator): AssertJ assert classes are part of
this module's main API. -->
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<!-- Parses the FORMAT JSON output of EXPLAIN. Small, dependency-free, tree-only - no need for
a full data-binding library (Jackson etc.) just to walk a plan tree. -->
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${org-json.version}</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresql.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${testcontainers.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>postgresql</artifactId>
<version>${testcontainers.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>