restx-jongo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.restx</groupId> <artifactId>restx-jongo</artifactId> <version>1.2.0-rc3</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.restx</groupId> <artifactId>restx-parent</artifactId> <version>1.2.0-rc3</version> </parent> <artifactId>restx-jongo</artifactId> <name>restx-jongo</name> <dependencies> <dependency> <groupId>io.restx</groupId> <artifactId>restx-factory</artifactId> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-core</artifactId> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-security-basic</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-joda</artifactId> </dependency> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongodb-driver-legacy</artifactId> </dependency> <dependency> <groupId>org.jongo</groupId> <artifactId>jongo</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <annotationProcessorPath> <groupId>io.restx</groupId> <artifactId>restx-factory-annotation-processor</artifactId> <version>${project.version}</version> </annotationProcessorPath> <annotationProcessorPath> <groupId>io.restx</groupId> <artifactId>restx-core-annotation-processor</artifactId> <version>${project.version}</version> </annotationProcessorPath> </annotationProcessorPaths> </configuration> </plugin> </plugins> </build> </project>