rethinkdb-orm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.jakobjarosch.rethinkdb</groupId> <artifactId>rethinkdb-orm</artifactId> <version>2.3.0-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>de.jakobjarosch.rethinkdb</groupId> <artifactId>rethinkdb-orm</artifactId> <version>2.3.0-5</version> <name>RethinkDB ORM for Java</name> <description>A lightweight OR mapper for RethinkDB, written in Java.</description> <url>https://github.com/foxylion/rethinkdb-orm-java</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Jakob Jarosch</name> <email>dev@jakobjarosch.de</email> <organizationUrl>https://www.jakobjarosch.de</organizationUrl> </developer> </developers> <scm> <connection>scm:git@github.com:foxylion/rethinkdb-orm-java.git</connection> <developerConnection>scm:git@github.com:foxylion/rethinkdb-orm-java.git</developerConnection> <url>https://github.com/foxylion/rethinkdb-orm-java</url> </scm> <dependencies> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.4.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>2.7.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>de.jakobjarosch.rethinkdb</groupId> <artifactId>rethinkdb-orm-annotations</artifactId> <version>2.3.0-5</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.7.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.auto.service</groupId> <artifactId>auto-service</artifactId> <version>1.0-rc2</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.reactivex</groupId> <artifactId>rxjava</artifactId> <version>1.0.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.squareup</groupId> <artifactId>javapoet</artifactId> <version>1.7.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.21</version> <scope>test</scope> </dependency> <dependency> <groupId>de.jakobjarosch.rethinkdb</groupId> <artifactId>rethinkdb-pool</artifactId> <version>2.3.0-5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>2.0.2-beta</version> <scope>test</scope> </dependency> </dependencies> </project>