wunmi-jdbc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.adeyinka7789</groupId>
<artifactId>wunmi-jdbc</artifactId>
<version>0.4.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>io.github.adeyinka7789</groupId>
<artifactId>wunmi-parent</artifactId>
<version>0.4.0</version>
</parent>
<artifactId>wunmi-jdbc</artifactId>
<name>wunmi-jdbc</name>
<description>A batteries-included JDBC FlagStore for wunmi — plain JDBC over a DataSource,
with a portable schema. No Spring required.</description>
<dependencies>
<dependency>
<groupId>io.github.adeyinka7789</groupId>
<artifactId>wunmi-core</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>