amy-development-database
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.amyassist</groupId>
<artifactId>amy-development-database</artifactId>
<version>0.8.0</version>
</dependency><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> <artifactId>amy-development-database</artifactId> <name>Amy development database</name> <description>A simple H2 Database with Adapter for development</description> <parent> <groupId>io.github.amyassist</groupId> <artifactId>amy</artifactId> <version>0.8.0</version> <relativePath>../pom.xml</relativePath> </parent> <dependencies> <dependency> <groupId>io.github.amyassist</groupId> <artifactId>amy-api</artifactId> </dependency> <dependency> <groupId>io.github.amyassist</groupId> <artifactId>amy-persistence-api</artifactId> <version>0.8.0</version> </dependency> <dependency> <groupId>io.github.amyassist</groupId> <artifactId>amy-di-api</artifactId> </dependency> <!-- Database implementations --> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.4.199</version> </dependency> </dependencies> </project>