ormfux-simple-orm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.orm-fux</groupId>
<artifactId>ormfux-simple-orm</artifactId>
<version>1.5</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.orm-fux</groupId>
<artifactId>ormfux-simple-orm</artifactId>
<version>1.5</version>
<name>ormfux-simple-orm</name>
<description>A small library for simple ORM access to databases</description>
<url>https://github.com/orm-fux/ormfux-simple-orm</url>
<licenses>
<license>
<name>The Unlicense</name>
<url>http://unlicense.org/</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>orm-fux</id>
<name>FM</name>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/orm-fux/ormfux-simple-orm.git</connection>
<developerConnection>scm:git:git@github.com:orm-fux/ormfux-simple-orm.git</developerConnection>
<url>https://github.com/orm-fux/ormfux-simple-orm.git</url>
</scm>
<dependencies>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.196</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.orm-fux</groupId>
<artifactId>ormfux-common-utils</artifactId>
<version>1.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.9</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.12.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>