permazen-kv-mysql
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.permazen</groupId> <artifactId>permazen-kv-mysql</artifactId> <version>4.1.8</version> </dependency>
<?xml version="1.0"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.permazen</groupId> <artifactId>permazen</artifactId> <version>4.1.8</version> </parent> <artifactId>permazen-kv-mysql</artifactId> <name>Permazen MySQL Key/Value Store</name> <description>Permazen key/value store based on MySQL.</description> <distributionManagement> <site> <id>${project.artifactId}-site</id> <url>file://${project.basedir}/../site/${project.artifactId}/</url> </site> </distributionManagement> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.parent.artifactId}-kv</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.parent.artifactId}-kv-sql</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.parent.artifactId}-kv-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> </dependencies> </project>