snapshot-testing
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>li.selman</groupId>
<artifactId>snapshot-testing</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>snapshot-testing</artifactId>
<packaging>jar</packaging>
<name>snapshot-testing</name>
<description>Deterministic, structured snapshots of captured queries (statement type, tables,
normalized SQL, occurrence count) - never raw SQL strings. Generates the snapshot representation
only; storage, diffing, and approval are delegated to java-snapshot-testing via a custom
SnapshotSerializer.</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>
<java-snapshot-testing.version>4.2.0</java-snapshot-testing.version>
<slf4j.version>2.0.17</slf4j.version>
</properties>
<dependencies>
<dependency>
<groupId>io.github.codedabble-dev</groupId>
<artifactId>java-snapshot-testing-core</artifactId>
<version>${java-snapshot-testing.version}</version>
</dependency>
<dependency>
<groupId>li.selman</groupId>
<artifactId>persistence-test-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>li.selman</groupId>
<artifactId>query-capture</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.codedabble-dev</groupId>
<artifactId>java-snapshot-testing-junit5</artifactId>
<version>${java-snapshot-testing.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>