kadai-simplehistory-provider
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.kadai.history</groupId> <artifactId>kadai-simplehistory-provider</artifactId> <version>9.3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <artifactId>kadai-simplehistory-provider</artifactId> <name>${project.groupId}:${project.artifactId}</name> <description>The kadai history events plugin to include in your project.</description> <parent> <groupId>io.kadai.history</groupId> <artifactId>kadai-history-parent</artifactId> <version>9.3.0</version> <relativePath>../pom.xml</relativePath> </parent> <dependencies> <dependency> <groupId>io.kadai</groupId> <artifactId>kadai-common-logging</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.kadai</groupId> <artifactId>kadai-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>${version.mybatis}</version> </dependency> <!-- test dependencies --> <dependency> <groupId>io.kadai</groupId> <artifactId>kadai-common-data</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.kadai</groupId> <artifactId>kadai-common-test</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.ibm.db2</groupId> <artifactId>jcc</artifactId> <version>${version.db2}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.kadai</groupId> <artifactId>kadai-test-api</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> </project>